BSD 4_3 development
[unix-history] / usr / src / ucb / dbx / tests / cc / sleep.c
#include <stdio.h>
main ()
{
char token[80];
printf("about to sleep");
fflush(stdout);
sleep(2);
endnot();
}
endnot()
{
printf("done\n");
}