do not proto __syscall or you will experience excruciating pain
authorderaadt <deraadt@openbsd.org>
Wed, 1 May 1996 11:09:23 +0000 (11:09 +0000)
committerderaadt <deraadt@openbsd.org>
Wed, 1 May 1996 11:09:23 +0000 (11:09 +0000)
lib/libc/sys/ftruncate.c
lib/libc/sys/lseek.c
lib/libc/sys/mmap.c
lib/libc/sys/truncate.c

index b1054bc..211824e 100644 (file)
@@ -53,7 +53,6 @@ ftruncate(fd, length)
        int     fd;
        off_t   length;
 {
-       quad_t __syscall __P((quad_t, ...));
 
        return(__syscall((quad_t)SYS_ftruncate, fd, 0, length));
 }
index 10363be..adc75f2 100644 (file)
@@ -54,7 +54,7 @@ lseek(fd, offset, whence)
        off_t   offset;
        int     whence;
 {
-       extern quad_t __syscall();
+       extern off_t __syscall();
 
        return(__syscall((quad_t)SYS_lseek, fd, 0, offset, whence));
 }
index b8ca378..442f3b1 100644 (file)
@@ -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));
index e8b0d73..c54c6ed 100644 (file)
@@ -53,7 +53,6 @@ truncate(path, length)
        const char *path;
        off_t length;
 {
-       quad_t __syscall __P((quad_t, ...));
 
        return(__syscall((quad_t)SYS_truncate, path, 0, length));
 }