From: Ulrich Drepper Date: Tue, 21 Mar 2000 01:18:01 +0000 (+0000) Subject: AIX implementation of mmap. X-Git-Tag: glibc-2.16-ports-before-merge~2595 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=518d7e658de731cfdb91a9806e793dd3351f92f0;p=thirdparty%2Fglibc.git AIX implementation of mmap. --- diff --git a/sysdeps/unix/sysv/aix/mmap.c b/sysdeps/unix/sysv/aix/mmap.c new file mode 100644 index 00000000000..cd967d36bc0 --- /dev/null +++ b/sysdeps/unix/sysv/aix/mmap.c @@ -0,0 +1,9 @@ +/* This is a system call. We only have to provide the wrapper. */ +#include +#include + +void * +__mmap (void *addr, size_t len, int prot, int flags, int fd, off_t offset) +{ + return mmap (addr, len, prot, flags, fd, offset); +}