diff options
author | Sam James <sam@gentoo.org> | 2023-01-29 03:41:09 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-01-29 03:41:51 +0000 |
commit | ffedc60fa41d307bda28fd108e6ff1b8da1fc2ee (patch) | |
tree | d3ed2520969ccccef48d3b65e0a22a593b0a4dfc | |
parent | *: IWYU fixes (diff) | |
download | pax-utils-ffedc60fa41d307bda28fd108e6ff1b8da1fc2ee.tar.gz pax-utils-ffedc60fa41d307bda28fd108e6ff1b8da1fc2ee.tar.bz2 pax-utils-ffedc60fa41d307bda28fd108e6ff1b8da1fc2ee.zip |
*: IWYU fixes deux
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | dumpelf.c | 1 | ||||
-rw-r--r-- | paxelf.c | 1 | ||||
-rw-r--r-- | paxinc.c | 1 | ||||
-rw-r--r-- | paxinc.h | 1 | ||||
-rw-r--r-- | paxldso.c | 2 | ||||
-rw-r--r-- | paxldso.h | 2 | ||||
-rw-r--r-- | paxmacho.c | 1 | ||||
-rw-r--r-- | pspax.c | 1 | ||||
-rw-r--r-- | scanelf.c | 1 | ||||
-rw-r--r-- | scanmacho.c | 1 | ||||
-rw-r--r-- | seccomp-bpf.c | 1 | ||||
-rw-r--r-- | xfuncs.c | 1 |
12 files changed, 11 insertions, 3 deletions
@@ -11,6 +11,7 @@ const char argv0[] = "dumpelf"; #include <getopt.h> #include <inttypes.h> #include <stdbool.h> +#include <stddef.h> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -7,6 +7,7 @@ */ #include <fcntl.h> +#include <stddef.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> @@ -12,6 +12,7 @@ #include "paxinc.h" #include <alloca.h> +#include <stddef.h> #include <fcntl.h> #include <sys/stat.h> #include <unistd.h> @@ -14,6 +14,7 @@ #include <byteswap.h> #include <errno.h> #include <stdbool.h> +#include <stddef.h> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -8,9 +8,9 @@ #include <ctype.h> #include <fcntl.h> -#include <features.h> #include <glob.h> #include <stdbool.h> +#include <stddef.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> @@ -9,8 +9,6 @@ #ifndef _PAX_LDSO_H #define _PAX_LDSO_H -#include <features.h> - #include "paxelf.h" #include "porting.h" #include "xfuncs.h" @@ -9,6 +9,7 @@ #include <byteswap.h> #include <fcntl.h> +#include <stddef.h> #include <stdint.h> #include <stdlib.h> #include <string.h> @@ -21,6 +21,7 @@ const char argv0[] = "pspax"; #include <getopt.h> #include <pwd.h> #include <stdbool.h> +#include <stddef.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> @@ -17,6 +17,7 @@ const char argv0[] = "scanelf"; #include <inttypes.h> #include <regex.h> #include <stdbool.h> +#include <stddef.h> #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/scanmacho.c b/scanmacho.c index fa1eee1..c38c5ed 100644 --- a/scanmacho.c +++ b/scanmacho.c @@ -16,6 +16,7 @@ const char argv0[] = "scanmacho"; #include <fcntl.h> #include <getopt.h> #include <stdbool.h> +#include <stddef.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> diff --git a/seccomp-bpf.c b/seccomp-bpf.c index 1d64172..7c3923f 100644 --- a/seccomp-bpf.c +++ b/seccomp-bpf.c @@ -11,6 +11,7 @@ const char argv0[] = "seccomp-bpf"; #include <err.h> #include <stdio.h> +#include <stddef.h> #include <stdlib.h> #include <unistd.h> #include <sys/mman.h> @@ -8,6 +8,7 @@ #include <errno.h> #include <stdbool.h> +#include <stddef.h> #include <stdlib.h> #include <string.h> |