From 67cc348d55b886eac7c3b3b028d22ec8e8c349a4 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 15 Aug 2012 10:09:18 -0700 Subject: [PATCH] Declare __getdirentries in internal dirent.h. --- ChangeLog | 2 ++ include/dirent.h | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 8e0a080..7ab9bc3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2012-08-15 Roland McGrath + * include/dirent.h: Declare __getdirentries. + * sysdeps/posix/system.c (do_system): Cast SUB_REF () to void when not using its value, to avoid warnings in the [!_LIBC_REENTRANT] case. diff --git a/include/dirent.h b/include/dirent.h index 8e4823c..096a977 100644 --- a/include/dirent.h +++ b/include/dirent.h @@ -30,6 +30,10 @@ extern int __scandir64 (const char * __dir, int (*__selector) (const struct dirent64 *), int (*__cmp) (const struct dirent64 **, const struct dirent64 **)); +extern __ssize_t __getdirentries (int __fd, char *__restrict __buf, + size_t __nbytes, + __off_t *__restrict __basep) + __THROW __nonnull ((2, 4)); extern __ssize_t __getdents (int __fd, char *__buf, size_t __nbytes) internal_function; extern __ssize_t __getdents64 (int __fd, char *__buf, size_t __nbytes) -- 2.7.4