find: improve usage text (Natanael Copa <natanael.copa@gmail.com>)
[oweals/busybox.git] / coreutils / sync.c
index 8a7f182654d5e74d51f1ac2cb7b16b26b7eccaf0..536c57a171cbe7c0cf910d8987b508ea214e7ee2 100644 (file)
 #include <unistd.h>
 #include "busybox.h"
 
+int sync_main(int argc, char **argv);
 int sync_main(int argc, char **argv)
 {
        bb_warn_ignoring_args(argc - 1);
 
        sync();
 
-       return(EXIT_SUCCESS);
+       return EXIT_SUCCESS;
 }