summaryrefslogtreecommitdiff
path: root/sleep.c
diff options
context:
space:
mode:
Diffstat (limited to 'sleep.c')
-rw-r--r--sleep.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/sleep.c b/sleep.c
new file mode 100644
index 000000000..e48e14b2f
--- /dev/null
+++ b/sleep.c
@@ -0,0 +1,15 @@
1#include "internal.h"
2#include <stdio.h>
3
4const char sleep_usage[] = "sleep seconds\n"
5"\n"
6"\tPause program execution for the given number of seconds.\n";
7
8extern int
9sleep_main(struct FileInfo * i, int argc, char * * argv)
10{
11 if ( sleep(atoi(argv[1])) != 0 )
12 return -1;
13 else
14 return 0;
15}