Rewrite -c and -b processing to shrink code and eliminate buffer overrun.
[oweals/busybox.git] / coreutils / sync.c
index fc5a42b8a7fe54f7cbc091bcb9f322980e938438..ee22ae109c5a222dd29a958ef375138f54e4220e 100644 (file)
  *
  */
 
-#include "busybox.h"
 #include <stdio.h>
+#include <stdlib.h>
 #include <unistd.h>
+#include "busybox.h"
 
 extern int sync_main(int argc, char **argv)
 {
        if (argc > 1 && **(argv + 1) == '-')
                show_usage();
-       return(sync());
+       sync();
+       return(EXIT_SUCCESS);
 }