2
0
mirror of git://sourceware.org/git/glibc.git synced 2025-01-24 12:25:35 +08:00
glibc/sysdeps/unix/sysv/aix/munmap.c
2000-03-21 01:18:13 +00:00

9 lines
162 B
C

/* 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);
}