summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2017-05-16 11:00:37 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2017-05-16 11:00:37 +0000
commit4074d8b182c6f60335dab996339660d9bd0dd266 (patch)
tree9c8050e25297b336fe4ab6a2dbc2ec23dabadaf7
parent97e0a785c827577aada4a474d2616af00a7278f4 (diff)
downloadskalibs-4074d8b182c6f60335dab996339660d9bd0dd266.tar.xz
Accommodate some broken GNU toolchains by including sys/types.h in sysdeps tests
-rw-r--r--src/include/skalibs/nonposix.h3
-rw-r--r--src/sysdeps/trygetpeereid.c1
-rw-r--r--src/sysdeps/trysetgroups.c1
3 files changed, 4 insertions, 1 deletions
diff --git a/src/include/skalibs/nonposix.h b/src/include/skalibs/nonposix.h
index 56a428a..7f064d5 100644
--- a/src/include/skalibs/nonposix.h
+++ b/src/include/skalibs/nonposix.h
@@ -53,7 +53,8 @@
#endif
- /* old versions of BSD: system headers are not self-contained,
+ /* old versions of BSD and some broken GNU toolchains:
+ system headers are not self-contained,
starting with sys/types.h normally always works. */
#include <sys/types.h>
diff --git a/src/sysdeps/trygetpeereid.c b/src/sysdeps/trygetpeereid.c
index 63cdbf1..10a411a 100644
--- a/src/sysdeps/trygetpeereid.c
+++ b/src/sysdeps/trygetpeereid.c
@@ -3,6 +3,7 @@
#undef _POSIX_C_SOURCE
#undef _XOPEN_SOURCE
+#include <sys/types.h>
#include <unistd.h>
int main (void)
diff --git a/src/sysdeps/trysetgroups.c b/src/sysdeps/trysetgroups.c
index 530cda0..66b831f 100644
--- a/src/sysdeps/trysetgroups.c
+++ b/src/sysdeps/trysetgroups.c
@@ -23,6 +23,7 @@
#define __EXTENSIONS__
#endif
+#include <sys/types.h>
#include <unistd.h>
#include <grp.h>