Changes and additions migrated from cvs.devel.redhat.com:/cvs/devel/glibc to fedora...
[glibc.git] / sysdeps / unix / sysv / aix / munmap.c
blob7f583be35878ae494b301aeff4e3befac90147d9
1 /* This is a system call. We only have to provide the wrapper. */
2 #include <sys/mman.h>
4 int
5 __munmap (void *addr, size_t len)
7 return munmap (addr, len);