xref: /haiku/src/apps/haikudepot/main.cpp (revision 1e60bdeab63fa7a57bc9a55b032052e95a18bd2c)
1 /*
2  * Copyright 2013, Stephan Aßmus <superstippi@gmx.de>
3  * All rights reserved. Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include <stdio.h>
8 
9 #include "App.h"
10 
11 
12 int
13 main(int argc, char* argv[])
14 {
15 	App().Run();
16 	return 0;
17 }
18