diff options
author | Ron <ron@debian.org> | 2009-06-27 04:44:22 +0930 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-07-05 20:27:17 -0400 |
commit | e0b6a06c8fd8d1b2022e0175cfdcf99246b1e68f (patch) | |
tree | 064d4e61b67dfa504f877be9a367f297d037cdd2 /librt | |
parent | 11a52734e42237bac70a1f4a3ae2ef7e9f751bc4 (diff) |
Add a few missing includes
elf.h needs __BYTE_ORDER, and s_scalbn.c needs {LONG,INT}_MAX.
shm.c complains about no prototypes for shm_{open,unlink} without its header.
Signed-off-by: Ron Lee <ron@debian.org>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'librt')
-rw-r--r-- | librt/shm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/librt/shm.c b/librt/shm.c index c7c0ee461..f1ef0e708 100644 --- a/librt/shm.c +++ b/librt/shm.c @@ -6,6 +6,7 @@ #include <features.h> #include <sys/types.h> #include <sys/stat.h> +#include <sys/mman.h> #include <fcntl.h> #include <unistd.h> #include <stdlib.h> |