xref: /xnu-11417.140.69/tests/sr_entitlement_helper.c (revision 43a90889846e00bfb5cf1d255cdc0a701a1e05a4)
1 #include <unistd.h>
2 #include <stdlib.h>
3 #include <stdio.h>
4 
5 /*
6  * This is a test helper that just has to run for a while.
7  */
8 int
main(int argc,char ** argv)9 main(int argc, char **argv)
10 {
11 	printf("Hello, world.\n");
12 	sleep(15);
13 	printf("That's all folks.\n");
14 	exit(0);
15 }
16