diff options
Diffstat (limited to 'src/mman/mmap.c')
-rw-r--r-- | src/mman/mmap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mman/mmap.c b/src/mman/mmap.c index 1592403..eff88d8 100644 --- a/src/mman/mmap.c +++ b/src/mman/mmap.c @@ -4,7 +4,6 @@ #include <stdint.h> #include <limits.h> #include "syscall.h" -#include "libc.h" static void dummy(void) { } weak_alias(dummy, __vm_wait); @@ -39,4 +38,4 @@ void *__mmap(void *start, size_t len, int prot, int flags, int fd, off_t off) weak_alias(__mmap, mmap); -LFS64(mmap); +weak_alias(mmap, mmap64); |