4.4BSD/usr/src/old/dbx/tests/cc/sleep.c

Compare this file to the similar file:
Show the results in this format:

#include <stdio.h>

main ()
{
    char token[80];

    printf("about to sleep");
    fflush(stdout);
    sleep(2);
    endnot();
}

endnot()
{
    printf("done\n");
}