diff options
Diffstat (limited to 'lib/libc/sys/mmap.c')
-rw-r--r-- | lib/libc/sys/mmap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libc/sys/mmap.c b/lib/libc/sys/mmap.c index 442f3b1699b..b8ca3788ce9 100644 --- a/lib/libc/sys/mmap.c +++ b/lib/libc/sys/mmap.c @@ -58,6 +58,7 @@ mmap(addr, len, prot, flags, fd, offset) int fd; off_t offset; { + quad_t __syscall __P((quad_t, ...)); return((caddr_t)(long)__syscall((quad_t)SYS_mmap, addr, len, prot, flags, fd, 0, offset)); |