Removed unnecessary #include "regexp.h" line from find.c as per Matt Kraai's
[oweals/busybox.git] / uuencode.c
index 91136b3e6d557b2376d7aa0fc786403bf87515ab..e4fc1a0bc9d4385295da2255262f15ebbe7f1d75 100644 (file)
@@ -56,6 +56,7 @@
 
 #include <stdio.h>
 #include <errno.h>
+#include <getopt.h>
 #include <pwd.h>
 
 #define        RW (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH)
@@ -240,5 +241,5 @@ int uuencode_main (int argc,
     errorMsg("Write error\n");
     exit FALSE;
   }
-  exit TRUE;
+  return( TRUE);
 }