diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-03-25 22:52:23 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-03-25 22:52:23 +0000 |
commit | 7283308534010ae0729003c8c8c7f75205885079 (patch) | |
tree | 70eb31ec8478287460d1f5ec61093a5c3875847c /lib/libc/sys/lseek.c | |
parent | 056407260bf2539719751106b53b00fcd4896619 (diff) |
Prototype __syscall() correctly
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 adc75f29b2f..10363bed96b 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 off_t __syscall(); + extern quad_t __syscall(); return(__syscall((quad_t)SYS_lseek, fd, 0, offset, whence)); } |