Stop using TRUE and FALSE for exit status.
[oweals/busybox.git] / usleep.c
index 69790ef090bc6efc6882b4633c5e14bb341fc241..86dc0501b71b41b0448037744dfa36b5bc6ccba2 100644 (file)
--- a/usleep.c
+++ b/usleep.c
@@ -32,5 +32,5 @@ extern int usleep_main(int argc, char **argv)
        }
 
        usleep(atoi(*(++argv)));        /* return void */
-       return(TRUE);
+       return EXIT_SUCCESS;
 }