xref: /haiku/src/tests/kits/app/bapplication/testapps/BApplicationTestApp1a.cpp (revision 83b1a68c52ba3e0e8796282759f694b7fdddf06d)
1 // BApplicationTestApp1a.cpp
2 
3 #include <stdio.h>
4 
5 #include <Application.h>
6 
7 int
8 main()
9 {
10 	BApplication app((const char*)NULL, NULL);
11 	printf("InitCheck(): %lx\n", app.InitCheck());
12 	return 0;
13 }
14 
15