summaryrefslogtreecommitdiff
path: root/lib/libc/sys/lseek.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2002-09-17 21:16:02 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2002-09-17 21:16:02 +0000
commit4768505c29990ff01e13044545b29c1fdf9fcd31 (patch)
treeceb4510af8f14eab9795ee56c59b61875f938981 /lib/libc/sys/lseek.c
parent87ca0d033f283587c2220d51ccbe048f9201eabd (diff)
uncommit, since it breaks macppc libc. millert and miod have now said they
did NOT approve those for commit. why did mickey feel he was ok to go commiting a set of diffs which had not been passed around and tested by people? we don't know. mickey, have you got something to say for yourself?
Diffstat (limited to 'lib/libc/sys/lseek.c')
-rw-r--r--lib/libc/sys/lseek.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/sys/lseek.c b/lib/libc/sys/lseek.c
index c94d2c5689f..6d5e42d97bd 100644
--- a/lib/libc/sys/lseek.c
+++ b/lib/libc/sys/lseek.c
@@ -32,12 +32,11 @@
*/
#if defined(SYSLIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: lseek.c,v 1.7 2002/09/17 12:57:50 mickey Exp $";
+static char rcsid[] = "$OpenBSD: lseek.c,v 1.8 2002/09/17 21:16:01 deraadt Exp $";
#endif /* SYSLIBC_SCCS and not lint */
#include <sys/types.h>
#include <sys/syscall.h>
-#include <unistd.h>
#include "thread_private.h"
/*
@@ -50,12 +49,13 @@ lseek(fd, offset, whence)
off_t offset;
int whence;
{
+ extern off_t __syscall();
off_t retval;
if (_FD_LOCK(fd, FD_RDWR, NULL) != 0) {
retval = -1;
} else {
- retval = __syscall(SYS_lseek, fd, 0, offset, whence);
+ retval = __syscall((quad_t)SYS_lseek, fd, 0, offset, whence);
_FD_UNLOCK(fd, FD_RDWR);
}
return retval;