Fix the pwd and group functions. The bb_ stuff was a leftover from
[oweals/busybox.git] / dos2unix.c
index 9634687eb2ab22c1f7d83f5214726fb88cf1a781..9fd952c3116ded0f493b5fc32e93c500a10d1d83 100644 (file)
@@ -22,8 +22,9 @@
   ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
-#include "internal.h"
+#include "busybox.h"
 #include <stdio.h>
+#include <stdlib.h>
 
 int dos2unix_main( int argc, char **argv ) {
        int c;
@@ -41,5 +42,5 @@ int dos2unix_main( int argc, char **argv ) {
                 putchar(c);
                 c = getchar();
        } 
-       return 0;
+       return EXIT_SUCCESS;
 }