This commit is contained in:
qorg11 2020-08-02 18:23:38 +02:00
parent 0f8f9dc363
commit 0d9b8f2551
No known key found for this signature in database
GPG Key ID: 343FC20A4ACA62B9
1 changed files with 15 additions and 0 deletions

15
src/sleep.c Normal file
View File

@ -0,0 +1,15 @@
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
int
main(int argc, char *argv[])
{
if(argc == 1)
{
printf("missing opperand\n");
}
sleep(atoi(argv[1]));
return 0;
}