aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-01-29 05:56:03 +0000
committerSam James <sam@gentoo.org>2023-01-29 05:56:33 +0000
commit731b5e1798e98694e6afa783065ff996331e8153 (patch)
tree417b76f3e0efc8c14c238ddfe27abe18dcdd84e8
parentpaxinc: include <alloca.h> for alloca (diff)
downloadpax-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.h5
1 files 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>