diff options
Diffstat (limited to 'sysdeps/unix/sysv/aix/munmap.c')
-rw-r--r-- | sysdeps/unix/sysv/aix/munmap.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/aix/munmap.c b/sysdeps/unix/sysv/aix/munmap.c new file mode 100644 index 0000000000..7f583be358 --- /dev/null +++ b/sysdeps/unix/sysv/aix/munmap.c @@ -0,0 +1,8 @@ +/* This is a system call. We only have to provide the wrapper. */ +#include <sys/mman.h> + +int +__munmap (void *addr, size_t len) +{ + return munmap (addr, len); +} |