X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;ds=sidebyside;f=sync.c;h=ee22ae109c5a222dd29a958ef375138f54e4220e;hb=80dd0863e2e7b2988dd1e30e83197f241be55e70;hp=8f101cf17a219efbe10a4c980ac6d74dd3daf17c;hpb=3570a34de46b1f7dedd16999bb1687e2d6b55d40;p=oweals%2Fbusybox.git diff --git a/sync.c b/sync.c index 8f101cf17..ee22ae109 100644 --- a/sync.c +++ b/sync.c @@ -21,12 +21,15 @@ * */ -#include "busybox.h" #include +#include +#include +#include "busybox.h" extern int sync_main(int argc, char **argv) { if (argc > 1 && **(argv + 1) == '-') - usage(sync_usage); - return(sync()); + show_usage(); + sync(); + return(EXIT_SUCCESS); }