xref: /haiku/src/apps/diskusage/DiskUsage.cpp (revision 23f179da55b1bd1ba84fbf3d3c56947e2c8d0aca)
1 /*
2  * Copyright (c) 1998-2007 Matthijs Hollemans
3  * All rights reserved. Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include "App.h"
8 
9 #include <TrackerAddOnAppLaunch.h>
10 
11 
12 int
13 main()
14 {
15 	App app;
16 	app.Run();
17 	return 0;
18 }
19 
20