xref: /haiku/src/tests/servers/registrar/no_shutdown_reply.cpp (revision 02354704729d38c3b078c696adc1bbbd33cbcf72)
1 /*
2  * Copyright 2005, Ingo Weinhold, bonefish@users.sf.net.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 #include <Application.h>
7 
8 int
9 main()
10 {
11 	BApplication app("application/x-vnd.haiku.no-shutdown-reply");
12 
13 	while (true)
14 		snooze(1000000);
15 
16 	return 0;
17 }
18