FENIX_coreutils/sleep.c

8 lines
143 B
C
Raw Normal View History

2020-12-11 10:05:53 +00:00
#include <unistd.h>
#include <stdlib.h>
int main(int argc, char * argv[]) {
int rest_time = atoi(argv[1]);
sleep(rest_time);
return 0;
}