xref: /haiku/src/tests/kits/app/bapplication/testapps/BApplicationTestApp1a.cpp (revision d5cd5d63ff0ad395989db6cf4841a64d5b545d1d)
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