9 lines
104 B
C
9 lines
104 B
C
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int main()
|
|
{
|
|
printf("p7: calling sleep()\n");
|
|
sleep(100);
|
|
}
|