From 518d7e658de731cfdb91a9806e793dd3351f92f0 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 21 Mar 2000 01:18:01 +0000 Subject: [PATCH] AIX implementation of mmap. --- sysdeps/unix/sysv/aix/mmap.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 sysdeps/unix/sysv/aix/mmap.c diff --git a/sysdeps/unix/sysv/aix/mmap.c b/sysdeps/unix/sysv/aix/mmap.c new file mode 100644 index 0000000..cd967d3 --- /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); +} -- 2.7.4