xref: /haiku/src/apps/login/main.cpp (revision 34c28c694bd11f4b8e7a712da1d4cde83954b4ec)
1 /*
2  * Copyright 2008, François Revol, <revol@free.fr>. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include "LoginApp.h"
8 
main(int,char **)9 int main(int , char **)
10 {
11 	LoginApp app;
12 	app.Run();
13 
14 	return 0;
15 }
16