xref: /csrg-svn/old/dbx/tests/cc/sleep.c (revision 44093)
1*44093Sbostic #include <stdio.h>
2*44093Sbostic 
main()3*44093Sbostic main ()
4*44093Sbostic {
5*44093Sbostic     char token[80];
6*44093Sbostic 
7*44093Sbostic     printf("about to sleep");
8*44093Sbostic     fflush(stdout);
9*44093Sbostic     sleep(2);
10*44093Sbostic     endnot();
11*44093Sbostic }
12*44093Sbostic 
endnot()13*44093Sbostic endnot()
14*44093Sbostic {
15*44093Sbostic     printf("done\n");
16*44093Sbostic }
17