diff options
Diffstat (limited to 'misc/mmap64.c')
-rw-r--r-- | misc/mmap64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/mmap64.c b/misc/mmap64.c index 845b847587..ccd286431f 100644 --- a/misc/mmap64.c +++ b/misc/mmap64.c @@ -28,8 +28,8 @@ for errors (in which case `errno' is set). A successful `mmap' call deallocates any previous mapping for the affected region. */ -__ptr_t -__mmap64 (__ptr_t addr, size_t len, int prot, int flags, int fd, +void * +__mmap64 (void *addr, size_t len, int prot, int flags, int fd, __off64_t offset) { off_t small_offset = (off_t) offset; |