date and time created 90/06/25 15:30:10 by bostic
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 26 Jun 1990 06:30:10 +0000 (22:30 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 26 Jun 1990 06:30:10 +0000 (22:30 -0800)
SCCS-vsn: old/dbx/tests/cc/sleep.c 5.1

usr/src/old/dbx/tests/cc/sleep.c [new file with mode: 0644]

diff --git a/usr/src/old/dbx/tests/cc/sleep.c b/usr/src/old/dbx/tests/cc/sleep.c
new file mode 100644 (file)
index 0000000..a3dfe22
--- /dev/null
@@ -0,0 +1,16 @@
+#include <stdio.h>
+
+main ()
+{
+    char token[80];
+
+    printf("about to sleep");
+    fflush(stdout);
+    sleep(2);
+    endnot();
+}
+
+endnot()
+{
+    printf("done\n");
+}