diff options
author | Sam James <sam@gentoo.org> | 2023-01-29 05:56:03 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-01-29 05:56:33 +0000 |
commit | 731b5e1798e98694e6afa783065ff996331e8153 (patch) | |
tree | 417b76f3e0efc8c14c238ddfe27abe18dcdd84e8 | |
parent | paxinc: include <alloca.h> for alloca (diff) | |
download | pax-utils-731b5e1798e98694e6afa783065ff996331e8153.tar.gz pax-utils-731b5e1798e98694e6afa783065ff996331e8153.tar.bz2 pax-utils-731b5e1798e98694e6afa783065ff996331e8153.zip |
porting.h: include <stddef.h> for size_t, sort includes
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | porting.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -29,15 +29,16 @@ #include <regex.h> #include <sched.h> #include <signal.h> +#include <stddef.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <time.h> -#include <unistd.h> #include <sys/mman.h> #include <sys/stat.h> #include <sys/types.h> +#include <time.h> +#include <unistd.h> #include "elf.h" #if HAS_ALLOCA_H # include <alloca.h> |