Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pax-utils:master commit in: /
Date: Sun, 29 Jan 2023 05:56:40
Message-Id: 1674971793.731b5e1798e98694e6afa783065ff996331e8153.sam@gentoo
1 commit: 731b5e1798e98694e6afa783065ff996331e8153
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 29 05:56:03 2023 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 29 05:56:33 2023 +0000
6 URL: https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=731b5e17
7
8 porting.h: include <stddef.h> for size_t, sort includes
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 porting.h | 5 +++--
13 1 file changed, 3 insertions(+), 2 deletions(-)
14
15 diff --git a/porting.h b/porting.h
16 index 0d43a92..4f34302 100644
17 --- a/porting.h
18 +++ b/porting.h
19 @@ -29,15 +29,16 @@
20 #include <regex.h>
21 #include <sched.h>
22 #include <signal.h>
23 +#include <stddef.h>
24 #include <stdbool.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 -#include <time.h>
29 -#include <unistd.h>
30 #include <sys/mman.h>
31 #include <sys/stat.h>
32 #include <sys/types.h>
33 +#include <time.h>
34 +#include <unistd.h>
35 #include "elf.h"
36 #if HAS_ALLOCA_H
37 # include <alloca.h>