should be working lol

This commit is contained in:
Gitea 2020-12-11 04:05:53 -06:00
parent c58bc44a70
commit 312317020b
1 changed files with 8 additions and 0 deletions

8
sleep.c Normal file
View 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;
}