diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2001-06-25 20:26:29 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2001-06-25 20:26:29 +0000 |
commit | 96b91643c34a145a2e565247ca7594c1f77fb011 (patch) | |
tree | bd7eca717f2d473cf3bcdd7bffff62e082b65f72 /libc/sysdeps/linux/common/syscalls.c | |
parent | 130ddae1735c638bddd24b3bd3e09e64c434f3c6 (diff) | |
download | uClibc-alpine-96b91643c34a145a2e565247ca7594c1f77fb011.tar.bz2 uClibc-alpine-96b91643c34a145a2e565247ca7594c1f77fb011.tar.xz |
Remove simulated d_type support for getdents and the dirent struct, and use
the straight getdents syscall instead of the wrapper (which leaked memory).
Diffstat (limited to 'libc/sysdeps/linux/common/syscalls.c')
-rw-r--r-- | libc/sysdeps/linux/common/syscalls.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/common/syscalls.c b/libc/sysdeps/linux/common/syscalls.c index e0aa4a91e..0b82f4973 100644 --- a/libc/sysdeps/linux/common/syscalls.c +++ b/libc/sysdeps/linux/common/syscalls.c @@ -984,11 +984,10 @@ loff_t llseek(int fd, loff_t offset, int whence) #endif //#define __NR_getdents 141 -#ifdef L__getdents -#define __NR__getdents __NR_getdents +#ifdef L_getdents #include <unistd.h> #include <dirent.h> -_syscall3(int, _getdents, int, fd, char *, dirp, size_t, count); +_syscall3(int, getdents, int, fd, char *, dirp, size_t, count); #endif //#define __NR__newselect 142 |