diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-04-08 21:40:18 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:36 +0200 |
commit | a0fa1f8acfc5997b8865f299815751d6f20ef581 (patch) | |
tree | 5bc2f229f4a8d96556fe8c80e97c26eb75d71cfd /libc/sysdeps/linux | |
parent | 37988beac705ae846332515b396ec74e6ee78209 (diff) |
munmap.c: do not include unistd.h
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux')
-rw-r--r-- | libc/sysdeps/linux/common/munmap.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/munmap.c b/libc/sysdeps/linux/common/munmap.c index 736bffee2..22c393ffc 100644 --- a/libc/sysdeps/linux/common/munmap.c +++ b/libc/sysdeps/linux/common/munmap.c @@ -8,9 +8,7 @@ */ #include <sys/syscall.h> -#include <unistd.h> #include <sys/mman.h> - _syscall2(int, munmap, void *, start, size_t, length) libc_hidden_def(munmap) |