1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#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); }