summaryrefslogtreecommitdiff
path: root/lib/libc/sys/netbsd_getdirentries.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/sys/netbsd_getdirentries.c')
-rw-r--r--lib/libc/sys/netbsd_getdirentries.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/libc/sys/netbsd_getdirentries.c b/lib/libc/sys/netbsd_getdirentries.c
index 816c8a179f4b..63485ad7d115 100644
--- a/lib/libc/sys/netbsd_getdirentries.c
+++ b/lib/libc/sys/netbsd_getdirentries.c
@@ -1,4 +1,4 @@
-/* $Id$ */
+/* $Id: netbsd_getdirentries.c,v 1.1 1998/03/09 07:07:20 jb Exp $ */
/* From: NetBSD: getdirentries.c,v 1.1 1997/10/10 02:15:56 fvdl Exp */
/*
@@ -34,17 +34,22 @@
*/
#include <sys/types.h>
+#include <sys/syscall.h>
#include <dirent.h>
#include <unistd.h>
int getdents __P((int, char *, size_t));
int
+#ifdef _THREAD_SAFE
+_thread_sys_getdirentries(fd, buf, nbytes, basep)
+#else
getdirentries(fd, buf, nbytes, basep)
+#endif
int fd, nbytes;
char *buf;
long *basep;
{
- *basep = lseek(fd, 0, SEEK_CUR);
+ *basep = __syscall((quad_t) SYS_lseek,fd, 0, 0, SEEK_CUR);
return getdents(fd, buf, nbytes);
}