diff options
Diffstat (limited to 'sync.c')
-rw-r--r-- | sync.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -23,11 +23,13 @@ #include "busybox.h" #include <stdio.h> +#include <stdlib.h> #include <unistd.h> extern int sync_main(int argc, char **argv) { if (argc > 1 && **(argv + 1) == '-') show_usage(); - return(sync()); + sync(); + return(EXIT_SUCCESS); } |