commit: 731b5e1798e98694e6afa783065ff996331e8153 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun Jan 29 05:56:03 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Jan 29 05:56:33 2023 +0000 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=731b5e17
porting.h: include <stddef.h> for size_t, sort includes Signed-off-by: Sam James <sam <AT> gentoo.org> porting.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/porting.h b/porting.h index 0d43a92..4f34302 100644 --- a/porting.h +++ b/porting.h @@ -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>
