diff options
Diffstat (limited to 'archival')
-rw-r--r-- | archival/ar.c | 2 | ||||
-rw-r--r-- | archival/gunzip.c | 2 | ||||
-rw-r--r-- | archival/gzip.c | 2 | ||||
-rw-r--r-- | archival/tar.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/archival/ar.c b/archival/ar.c index 59c3a77..f3ba59b 100644 --- a/archival/ar.c +++ b/archival/ar.c @@ -35,7 +35,7 @@ #include <sys/types.h> #include <sys/stat.h> #include <malloc.h> -#include "internal.h" +#include "busybox.h" #define BLOCK_SIZE 60 #define PRESERVE_DATE 1 /* preserve original dates */ diff --git a/archival/gunzip.c b/archival/gunzip.c index b27ebed..ee86930 100644 --- a/archival/gunzip.c +++ b/archival/gunzip.c @@ -27,7 +27,7 @@ * */ -#include "internal.h" +#include "busybox.h" #include <getopt.h> /* These defines are very important for BusyBox. Without these, diff --git a/archival/gzip.c b/archival/gzip.c index c083268..e518ffd 100644 --- a/archival/gzip.c +++ b/archival/gzip.c @@ -29,7 +29,7 @@ * */ -#include "internal.h" +#include "busybox.h" #define BB_DECLARE_EXTERN #define bb_need_memory_exhausted #include "messages.c" diff --git a/archival/tar.c b/archival/tar.c index e4bdd0a..c14a619 100644 --- a/archival/tar.c +++ b/archival/tar.c @@ -36,7 +36,7 @@ */ -#include "internal.h" +#include "busybox.h" #define BB_DECLARE_EXTERN #define bb_need_io_error #define bb_need_name_longer_then_foo |