summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillem Jover <guillem@hadrons.org>2015-12-12 14:27:12 +0100
committerGuillem Jover <guillem@hadrons.org>2015-12-14 00:58:51 +0100
commit48ac79b1883981f5135b5b9c76ca268e6cbe65b2 (patch)
tree6799085015447c150b00476edd211d54cd12ef75
parent290a1ce8f262a7f30a77c0a89eaa28876de876ed (diff)
Use the non-overlayed libbsd headers when we need our own definitions
-rw-r--r--include/bsd/err.h4
-rw-r--r--include/bsd/unistd.h4
2 files changed, 8 insertions, 0 deletions
diff --git a/include/bsd/err.h b/include/bsd/err.h
index b465c1b..12fd051 100644
--- a/include/bsd/err.h
+++ b/include/bsd/err.h
@@ -34,7 +34,11 @@
#ifndef LIBBSD_ERR_H
#define LIBBSD_ERR_H
+#ifdef LIBBSD_OVERLAY
#include <sys/cdefs.h>
+#else
+#include <bsd/sys/cdefs.h>
+#endif
#include <stdarg.h>
diff --git a/include/bsd/unistd.h b/include/bsd/unistd.h
index 78a4525..1f9c5f8 100644
--- a/include/bsd/unistd.h
+++ b/include/bsd/unistd.h
@@ -34,7 +34,11 @@
#ifndef LIBBSD_UNISTD_H
#define LIBBSD_UNISTD_H
+#ifdef LIBBSD_OVERLAY
#include <sys/cdefs.h>
+#else
+#include <bsd/sys/cdefs.h>
+#endif
#include <sys/stat.h>
#ifndef S_ISTXT