From: Ulrich Drepper Date: Tue, 21 Mar 2000 01:18:13 +0000 (+0000) Subject: AIX implementation of munmap. X-Git-Tag: glibc-2.16-ports-before-merge~2593 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f38ffbfeccb1c67491515e3620a88ace48977e41;p=thirdparty%2Fglibc.git AIX implementation of munmap. --- diff --git a/sysdeps/unix/sysv/aix/munmap.c b/sysdeps/unix/sysv/aix/munmap.c new file mode 100644 index 00000000000..7f583be3587 --- /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 + +int +__munmap (void *addr, size_t len) +{ + return munmap (addr, len); +}