aboutsummaryrefslogtreecommitdiff
path: root/usleep.c
diff options
context:
space:
mode:
Diffstat (limited to 'usleep.c')
-rw-r--r--usleep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usleep.c b/usleep.c
index 69790ef09..86dc0501b 100644
--- a/usleep.c
+++ b/usleep.c
@@ -32,5 +32,5 @@ extern int usleep_main(int argc, char **argv)
32 } 32 }
33 33
34 usleep(atoi(*(++argv))); /* return void */ 34 usleep(atoi(*(++argv))); /* return void */
35 return(TRUE); 35 return EXIT_SUCCESS;
36} 36}