aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coreutils/sync.c4
-rw-r--r--sync.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/coreutils/sync.c b/coreutils/sync.c
index fc5a42b8a..3d4686efa 100644
--- a/coreutils/sync.c
+++ b/coreutils/sync.c
@@ -23,11 +23,13 @@
#include "busybox.h"
#include <stdio.h>
+#include <stdlib.h>
#include <unistd.h>
extern int sync_main(int argc, char **argv)
{
if (argc > 1 && **(argv + 1) == '-')
show_usage();
- return(sync());
+ sync();
+ return(EXIT_SUCCESS);
}
diff --git a/sync.c b/sync.c
index fc5a42b8a..3d4686efa 100644
--- a/sync.c
+++ b/sync.c
@@ -23,11 +23,13 @@
#include "busybox.h"
#include <stdio.h>
+#include <stdlib.h>
#include <unistd.h>
extern int sync_main(int argc, char **argv)
{
if (argc > 1 && **(argv + 1) == '-')
show_usage();
- return(sync());
+ sync();
+ return(EXIT_SUCCESS);
}