diff options
Diffstat (limited to '')
-rw-r--r-- | sleep.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +#include <stdio.h> +#include <stdlib.h> +#include <unistd.h> + +int main(int argc, char *argv[]) +{ + if (argc > 0) + sleep(atoi(argv[1])); +} |