summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-06-27 09:30:44 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-10-23 09:24:07 +0200
commit0de65a87829cb5834a53214159b2bf039d577508 (patch)
tree91fd35ebf2f55989c833c21a53814742c24ccc90
parentInstall Linux header files (diff)
downloadrtems-libbsd-0de65a87829cb5834a53214159b2bf039d577508.tar.bz2
linux: Include missing <sys/errno.h>
-rw-r--r--rtemsbsd/powerpc/include/linux/bitops.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/rtemsbsd/powerpc/include/linux/bitops.h b/rtemsbsd/powerpc/include/linux/bitops.h
index 1348697c..42faa345 100644
--- a/rtemsbsd/powerpc/include/linux/bitops.h
+++ b/rtemsbsd/powerpc/include/linux/bitops.h
@@ -33,6 +33,7 @@
#include <sys/param.h>
#include <sys/systm.h>
+#include <sys/errno.h>
#define BIT(nr) (1UL << (nr))
#ifdef __LP64__