FENIX_coreutils/sleep.c

8 lines
143 B
C

#include <unistd.h>
#include <stdlib.h>
int main(int argc, char * argv[]) {
int rest_time = atoi(argv[1]);
sleep(rest_time);
return 0;
}