should be working lol
This commit is contained in:
parent
c58bc44a70
commit
312317020b
1 changed files with 8 additions and 0 deletions
8
sleep.c
Normal file
8
sleep.c
Normal file
|
@ -0,0 +1,8 @@
|
|||
#include <unistd.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main(int argc, char * argv[]) {
|
||||
int rest_time = atoi(argv[1]);
|
||||
sleep(rest_time);
|
||||
return 0;
|
||||
}
|
Loading…
Reference in a new issue