Update.
[glibc.git] / sysdeps / unix / sysv / aix / mmap.c
blobcd967d36bc014a2ccb831ef4b61c65aa5f1c4ed4
1 /* This is a system call. We only have to provide the wrapper. */
2 #include <sys/mman.h>
3 #include <sys/types.h>
5 void *
6 __mmap (void *addr, size_t len, int prot, int flags, int fd, off_t offset)
8 return mmap (addr, len, prot, flags, fd, offset);