diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-01 11:09:28 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-01 11:09:28 +0000 |
commit | 28b2092a160fe626044a5ddcd131597bb7c77ba6 (patch) | |
tree | 57b77535f187425b485569232bdb97ee534c271c /lib/libc/sys/lseek.c | |
parent | 3a7eeb51143e769a9c17a1770dd5f7278d9e10c1 (diff) |
do not proto __syscall or you will experience excruciating pain
Diffstat (limited to 'lib/libc/sys/lseek.c')
-rw-r--r-- | lib/libc/sys/lseek.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/sys/lseek.c b/lib/libc/sys/lseek.c index 10363bed96b..adc75f29b2f 100644 --- a/lib/libc/sys/lseek.c +++ b/lib/libc/sys/lseek.c @@ -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)); } |