Fix header file usage -- there were many unnecessary header files included in
busybox.h which slowed compiles. I left only what was needed and then fixed up
all the apps to include their own header files. I also fixed naming for pwd.h
and grp.h functions. Tested to compile and run with libc5, glibc, and uClibc.
-Erik
diff --git a/chmod_chown_chgrp.c b/chmod_chown_chgrp.c
index f6ecfd6..08ea6ee 100644
--- a/chmod_chown_chgrp.c
+++ b/chmod_chown_chgrp.c
@@ -29,6 +29,9 @@
#include "messages.c"
#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
static long uid = -1;