chiark / gitweb /
eglibc (2.11.3-4+deb6u3) squeeze-lts; urgency=medium
[eglibc.git] / ports / sysdeps / unix / sysv / aix / mmap.c
1 /* This is a system call.  We only have to provide the wrapper.  */
2 #include <sys/mman.h>
3 #include <sys/types.h>
4
5 void *
6 __mmap (void *addr, size_t len, int prot, int flags, int fd, off_t offset)
7 {
8   return mmap (addr, len, prot, flags, fd, offset);
9 }