mirror of
https://github.com/darlinghq/darling-xnu.git
synced 2024-11-23 12:39:55 +00:00
16 lines
244 B
C
16 lines
244 B
C
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
/*
|
|
* This is a test helper that just has to run for a while.
|
|
*/
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
printf("Hello, world.\n");
|
|
sleep(15);
|
|
printf("That's all folks.\n");
|
|
exit(0);
|
|
}
|