From ed3ef50c233ffb1b50ea0e7382a8e60b86491009 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 27 Jan 2001 08:24:39 +0000 Subject: 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 --- archival/ar.c | 4 ++++ archival/dpkg_deb.c | 3 +++ archival/gzip.c | 1 + archival/tar.c | 3 +++ 4 files changed, 11 insertions(+) (limited to 'archival') diff --git a/archival/ar.c b/archival/ar.c index 596574e6a..550b2a1c4 100644 --- a/archival/ar.c +++ b/archival/ar.c @@ -23,6 +23,10 @@ * */ #include +#include +#include +#include +#include #include "busybox.h" typedef struct ar_headers_s { diff --git a/archival/dpkg_deb.c b/archival/dpkg_deb.c index 35904950f..3a789379b 100644 --- a/archival/dpkg_deb.c +++ b/archival/dpkg_deb.c @@ -17,6 +17,9 @@ #include #include #include +#include +#include +#include #include "busybox.h" typedef struct ar_headers_s { diff --git a/archival/gzip.c b/archival/gzip.c index 09260929e..5a74868c1 100644 --- a/archival/gzip.c +++ b/archival/gzip.c @@ -45,6 +45,7 @@ */ #include #include +#include #define memzero(s, n) memset ((void *)(s), 0, (n)) #ifndef RETSIGTYPE diff --git a/archival/tar.c b/archival/tar.c index 51a857d71..2c7169bcc 100644 --- a/archival/tar.c +++ b/archival/tar.c @@ -52,6 +52,9 @@ #include #include #include +#include +#include +#include #ifdef BB_FEATURE_TAR_GZIP extern int unzip(int in, int out); -- cgit v1.2.3