8 lines
143 B
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;
|
||
|
}
|