Oops. Since dirent.h depends on BB_FEATURE_SH_TAB_COMPLETION, put it
[oweals/busybox.git] / echo.c
diff --git a/echo.c b/echo.c
index a6b5152d8bfbf496d84492beba695e72b17ba3e1..e9bc50a15281f7a4dc4e04e997021e36df4b4516 100644 (file)
--- a/echo.c
+++ b/echo.c
  * Original copyright notice is retained at the end of this file.
  */
 
-#include "busybox.h"
 #include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
+#include "busybox.h"
 
 extern int 
 echo_main(int argc, char** argv)
@@ -107,7 +109,7 @@ just_echo:
                putchar('\n');
        fflush(stdout);
 
-       return 0;
+       return EXIT_SUCCESS;
 }
 
 /*-