diff options
Diffstat (limited to 'libc/misc/dirent/readdir.c')
-rw-r--r-- | libc/misc/dirent/readdir.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libc/misc/dirent/readdir.c b/libc/misc/dirent/readdir.c index d74f9abb7..8c5fd7f1a 100644 --- a/libc/misc/dirent/readdir.c +++ b/libc/misc/dirent/readdir.c @@ -5,8 +5,6 @@ #include <dirent.h> #include "dirstream.h" -extern int getdents __P ((unsigned int fd, struct dirent *dirp, unsigned int count)); - struct dirent *readdir(DIR * dir) { @@ -25,7 +23,7 @@ struct dirent *readdir(DIR * dir) do { if (dir->dd_size <= dir->dd_nextloc) { /* read dir->dd_max bytes of directory entries. */ - bytes = getdents(dir->dd_fd, dir->dd_buf, dir->dd_max); + bytes = __getdents(dir->dd_fd, dir->dd_buf, dir->dd_max); if (bytes <= 0) { de = NULL; goto all_done; |