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/str_syscalls.sh | |
parent | 130ddae1735c638bddd24b3bd3e09e64c434f3c6 (diff) |
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/str_syscalls.sh')
-rwxr-xr-x | libc/sysdeps/linux/common/str_syscalls.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/str_syscalls.sh b/libc/sysdeps/linux/common/str_syscalls.sh index a9e984821..c82521469 100755 --- a/libc/sysdeps/linux/common/str_syscalls.sh +++ b/libc/sysdeps/linux/common/str_syscalls.sh @@ -29,6 +29,6 @@ echo "printf(\"#define __STR_NR_fcntl __STR_NR__fcntl\n\");" echo "printf(\"#define __STR_NR_reboot __STR_NR__reboot\n\");" echo "printf(\"#define __STR_NR_mmap __STR_NR__mmap\n\");" echo "printf(\"#define __STR_NR_syslog __STR_NR__syslog\n\");" -echo "printf(\"#define __STR_NR_getdents __STR_NR__getdents\n\");" +#echo "printf(\"#define __STR_NR_getdents __STR_NR__getdents\n\");" echo echo "return EXIT_SUCCESS; }" |