X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=coreutils%2Fsync.c;h=84746311f3227498048aefbc97253db84655dcba;hb=4905434b8aead249d6bdd134d2fbd8c06dfcc059;hp=f7c14b04cac85c7addbb054300e007c69ebd25dc;hpb=3bd8bd89ee9d0b65bf279e1ecad826a5f2f0a217;p=oweals%2Fbusybox.git diff --git a/coreutils/sync.c b/coreutils/sync.c index f7c14b04c..84746311f 100644 --- a/coreutils/sync.c +++ b/coreutils/sync.c @@ -2,7 +2,6 @@ /* * Mini sync implementation for busybox * - * * Copyright (C) 1995, 1996 by Bruce Perens . * * This program is free software; you can redistribute it and/or modify @@ -21,19 +20,17 @@ * */ -#include "internal.h" -#include +/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */ -const char sync_usage[] = - "sync\n" -#ifndef BB_FEATURE_TRIVIAL_HELP - "\nWrite all buffered filesystem blocks to disk.\n" -#endif - ; +#include +#include +#include "busybox.h" extern int sync_main(int argc, char **argv) { - if (argc > 1 && **(argv + 1) == '-') - usage(sync_usage); - return(sync()); + bb_warn_ignoring_args(argc - 1); + + sync(); + + return(EXIT_SUCCESS); }