FENIX_coreutils/sleep.c

10 lines
176 B
C
Raw Permalink Normal View History

#define _POSIX_C_SOURCE 200809L
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;
}