summaryrefslogtreecommitdiff
path: root/lib/libc/sys/mmap.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-05-01 11:09:28 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-05-01 11:09:28 +0000
commit28b2092a160fe626044a5ddcd131597bb7c77ba6 (patch)
tree57b77535f187425b485569232bdb97ee534c271c /lib/libc/sys/mmap.c
parent3a7eeb51143e769a9c17a1770dd5f7278d9e10c1 (diff)
do not proto __syscall or you will experience excruciating pain
Diffstat (limited to 'lib/libc/sys/mmap.c')
-rw-r--r--lib/libc/sys/mmap.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/libc/sys/mmap.c b/lib/libc/sys/mmap.c
index b8ca3788ce9..442f3b1699b 100644
--- a/lib/libc/sys/mmap.c
+++ b/lib/libc/sys/mmap.c
@@ -58,7 +58,6 @@ 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));