diff options
Diffstat (limited to '')
-rw-r--r-- | manual tests/8 timeout/sleepprog.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/manual tests/8 timeout/sleepprog.c b/manual tests/8 timeout/sleepprog.c new file mode 100644 index 0000000..8875e12 --- /dev/null +++ b/manual tests/8 timeout/sleepprog.c @@ -0,0 +1,6 @@ +#include<unistd.h> + +int main(void) { + sleep(1000); + return 0; +} |