xref: /haiku/src/apps/login/main.cpp (revision 34c28c694bd11f4b8e7a712da1d4cde83954b4ec)
1*34c28c69SFrançois Revol /*
2*34c28c69SFrançois Revol  * Copyright 2008, François Revol, <revol@free.fr>. All rights reserved.
3*34c28c69SFrançois Revol  * Distributed under the terms of the MIT License.
4*34c28c69SFrançois Revol  */
5*34c28c69SFrançois Revol 
6*34c28c69SFrançois Revol 
764811019SFrançois Revol #include "LoginApp.h"
864811019SFrançois Revol 
main(int,char **)964811019SFrançois Revol int main(int , char **)
1064811019SFrançois Revol {
1164811019SFrançois Revol 	LoginApp app;
1264811019SFrançois Revol 	app.Run();
1364811019SFrançois Revol 
1464811019SFrançois Revol 	return 0;
1564811019SFrançois Revol }
16