diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 15 | ||||
| -rw-r--r-- | src/arlib.c | 2 | ||||
| -rw-r--r-- | src/arlib2.c | 1 | ||||
| -rw-r--r-- | src/elfcompress.c | 1 | ||||
| -rw-r--r-- | src/elflint.c | 2 | ||||
| -rw-r--r-- | src/nm.c | 2 | ||||
| -rw-r--r-- | src/objdump.c | 2 | ||||
| -rw-r--r-- | src/ranlib.c | 1 | ||||
| -rw-r--r-- | src/readelf.c | 2 | ||||
| -rw-r--r-- | src/size.c | 1 | ||||
| -rw-r--r-- | src/strings.c | 2 | ||||
| -rw-r--r-- | src/strip.c | 2 | ||||
| -rw-r--r-- | src/unstrip.c | 1 |
13 files changed, 24 insertions, 10 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 70d11f2e..68baa2e7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,18 @@ +2015-10-11 Akihiko Odaki <[email protected]> + + * arlib.c: Remove system.h include, add libeu.h include. + * arlib2.c: Remove sys/param.h include. + * elfcompress.c: Add libeu.h include. + * elflint.c: Remove sys/param.h include, add libeu.h include. + * nm.c: Likewise. + * objdump.c: Likewise. + * ranlib.c: Likewise. + * readelf.c: Likewise. + * size.c: Remove sys/param.h include. + * strings.c: Likewise, add libeu.h include. + * strip.c: Likewise. + * unstrip.c: Likewise. + 2016-10-06 Mark Wielaard <[email protected]> * strip.c (handle_elf): Don't remove real symbols from allocated diff --git a/src/arlib.c b/src/arlib.c index 43a9145b..c3cf47f8 100644 --- a/src/arlib.c +++ b/src/arlib.c @@ -28,7 +28,7 @@ #include <stdlib.h> #include <time.h> -#include <system.h> +#include <libeu.h> #include "arlib.h" diff --git a/src/arlib2.c b/src/arlib2.c index 7998fc6c..553fc57b 100644 --- a/src/arlib2.c +++ b/src/arlib2.c @@ -24,7 +24,6 @@ #include <libintl.h> #include <limits.h> #include <string.h> -#include <sys/param.h> #include "arlib.h" diff --git a/src/elfcompress.c b/src/elfcompress.c index 86cc7165..7392cb76 100644 --- a/src/elfcompress.c +++ b/src/elfcompress.c @@ -34,6 +34,7 @@ #include ELFUTILS_HEADER(ebl) #include ELFUTILS_HEADER(dwelf) #include <gelf.h> +#include "libeu.h" #include "system.h" /* Name and version of program. */ diff --git a/src/elflint.c b/src/elflint.c index 8c298c93..8b52ee2b 100644 --- a/src/elflint.c +++ b/src/elflint.c @@ -35,9 +35,9 @@ #include <string.h> #include <unistd.h> #include <sys/stat.h> -#include <sys/param.h> #include <elf-knowledge.h> +#include <libeu.h> #include <system.h> #include "../libelf/libelfP.h" #include "../libelf/common.h" @@ -41,8 +41,8 @@ #include <stdlib.h> #include <string.h> #include <unistd.h> -#include <sys/param.h> +#include <libeu.h> #include <system.h> #include "../libebl/libeblP.h" #include "../libdwfl/libdwflP.h" diff --git a/src/objdump.c b/src/objdump.c index 0aa41e89..1afcd573 100644 --- a/src/objdump.c +++ b/src/objdump.c @@ -32,8 +32,8 @@ #include <stdlib.h> #include <string.h> #include <unistd.h> -#include <sys/param.h> +#include <libeu.h> #include <system.h> #include "../libebl/libeblP.h" diff --git a/src/ranlib.c b/src/ranlib.c index c93c5ac8..455de0d6 100644 --- a/src/ranlib.c +++ b/src/ranlib.c @@ -35,7 +35,6 @@ #include <stdio_ext.h> #include <unistd.h> #include <sys/mman.h> -#include <sys/param.h> #include <sys/stat.h> #include <system.h> diff --git a/src/readelf.c b/src/readelf.c index f1572906..204aeecb 100644 --- a/src/readelf.c +++ b/src/readelf.c @@ -40,10 +40,10 @@ #include <string.h> #include <time.h> #include <unistd.h> -#include <sys/param.h> #include <sys/stat.h> #include <signal.h> +#include <libeu.h> #include <system.h> #include "../libelf/libelfP.h" #include "../libelf/common.h" @@ -34,7 +34,6 @@ #include <stdlib.h> #include <string.h> #include <unistd.h> -#include <sys/param.h> #include <system.h> diff --git a/src/strings.c b/src/strings.c index c1d63cd6..a4ffcbee 100644 --- a/src/strings.c +++ b/src/strings.c @@ -38,9 +38,9 @@ #include <string.h> #include <unistd.h> #include <sys/mman.h> -#include <sys/param.h> #include <sys/stat.h> +#include <libeu.h> #include <system.h> #ifndef MAP_POPULATE diff --git a/src/strip.c b/src/strip.c index 819b67e8..64ef84d3 100644 --- a/src/strip.c +++ b/src/strip.c @@ -36,13 +36,13 @@ #include <stdlib.h> #include <string.h> #include <unistd.h> -#include <sys/param.h> #include <sys/stat.h> #include <sys/time.h> #include <elf-knowledge.h> #include <libebl.h> #include "libdwelf.h" +#include <libeu.h> #include <system.h> typedef uint8_t GElf_Byte; diff --git a/src/unstrip.c b/src/unstrip.c index 46737381..3bf4b192 100644 --- a/src/unstrip.c +++ b/src/unstrip.c @@ -49,6 +49,7 @@ #include <libebl.h> #include <libdwfl.h> #include "libdwelf.h" +#include "libeu.h" #include "system.h" #ifndef _ |
