Fix the pwd and group functions. The bb_ stuff was a leftover from
[oweals/busybox.git] / echo.c
diff --git a/echo.c b/echo.c
index a6b5152d8bfbf496d84492beba695e72b17ba3e1..b3e01afec8e90f99d0f8c268fa500b794465be2c 100644 (file)
--- a/echo.c
+++ b/echo.c
@@ -24,6 +24,8 @@
 
 #include "busybox.h"
 #include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
 
 extern int 
 echo_main(int argc, char** argv)
@@ -107,7 +109,7 @@ just_echo:
                putchar('\n');
        fflush(stdout);
 
-       return 0;
+       return EXIT_SUCCESS;
 }
 
 /*-