diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-31 22:16:38 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-31 22:16:38 +0000 |
commit | fad2b86c9e7eaadb973b50a1bc0e2accc1a96cfd (patch) | |
tree | f2d3fe127fb6c3c1d3b919631de6e6ed7cbc1791 /archival | |
parent | c2f011aa031b8598422953d5e9a93ca008ad0867 (diff) | |
download | busybox-fad2b86c9e7eaadb973b50a1bc0e2accc1a96cfd.tar.gz |
use "glibc errno" trick not only for ash, but for entire busybox
(add/remove: 1/1 grow/shrink: 37/37 up/down: 139/-228) Total: -89 bytes
Diffstat (limited to 'archival')
-rw-r--r-- | archival/libunarchive/data_skip.c | 6 | ||||
-rw-r--r-- | archival/libunarchive/seek_by_jump.c | 5 |
2 files changed, 1 insertions, 10 deletions
diff --git a/archival/libunarchive/data_skip.c b/archival/libunarchive/data_skip.c index dc3505a56..d9778da2e 100644 --- a/archival/libunarchive/data_skip.c +++ b/archival/libunarchive/data_skip.c @@ -3,12 +3,8 @@ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ -#include <sys/types.h> -#include <errno.h> -#include <unistd.h> -#include <stdlib.h> -#include "unarchive.h" #include "libbb.h" +#include "unarchive.h" void data_skip(archive_handle_t *archive_handle) { diff --git a/archival/libunarchive/seek_by_jump.c b/archival/libunarchive/seek_by_jump.c index d605f61dd..6cd256418 100644 --- a/archival/libunarchive/seek_by_jump.c +++ b/archival/libunarchive/seek_by_jump.c @@ -3,11 +3,6 @@ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ -#include <sys/types.h> -#include <errno.h> -#include <unistd.h> -#include <stdlib.h> - #include "libbb.h" #include "unarchive.h" |