X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;ds=sidebyside;f=coreutils%2Fsync.c;h=ee22ae109c5a222dd29a958ef375138f54e4220e;hb=2e6c87876353cf5e038d8430c076f645be51da75;hp=fc5a42b8a7fe54f7cbc091bcb9f322980e938438;hpb=67991cf824f8df27e74c92d754fb507681c69ce6;p=oweals%2Fbusybox.git diff --git a/coreutils/sync.c b/coreutils/sync.c index fc5a42b8a..ee22ae109 100644 --- a/coreutils/sync.c +++ b/coreutils/sync.c @@ -21,13 +21,15 @@ * */ -#include "busybox.h" #include +#include #include +#include "busybox.h" extern int sync_main(int argc, char **argv) { if (argc > 1 && **(argv + 1) == '-') show_usage(); - return(sync()); + sync(); + return(EXIT_SUCCESS); }