diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2017-09-28 00:41:02 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2017-09-28 00:49:59 +0200 |
commit | 64a4af28a62e9f305c82bc9649bbe065fffdeb0d (patch) | |
tree | 70b8b85f7ac1b13ac568e446ebd433c945295cf2 /include/dirent.h | |
parent | 52a1f1814ef530d8c78442f2bcaf28f4f2575790 (diff) | |
download | glibc-64a4af28a62e9f305c82bc9649bbe065fffdeb0d.tar glibc-64a4af28a62e9f305c82bc9649bbe065fffdeb0d.tar.gz glibc-64a4af28a62e9f305c82bc9649bbe065fffdeb0d.tar.bz2 glibc-64a4af28a62e9f305c82bc9649bbe065fffdeb0d.zip |
hurd: Fix `seekdir' symbol exposition from `rewinddir'
`seekdir' is MISC || XOPEN, it should not be exposed along `rewinddir' which
is POSIX.
* include/dirent.h (__seekdir): New declaration.
* sysdeps/mach/hurd/seekdir.c (seekdir): Rename to __seekdir and
redefine as weak alias.
* sysdeps/mach/hurd/rewinddir.c (__rewinddir): Use __seekdir instead
of seekdir.
Diffstat (limited to 'include/dirent.h')
-rw-r--r-- | include/dirent.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/dirent.h b/include/dirent.h index 5720d589a2..d7dbf83964 100644 --- a/include/dirent.h +++ b/include/dirent.h @@ -46,6 +46,7 @@ extern int __versionsort64 (const struct dirent64 **a, extern DIR *__alloc_dir (int fd, bool close_fd, int flags, const struct stat64 *statp) attribute_hidden; extern __typeof (rewinddir) __rewinddir; +extern __typeof (seekdir) __seekdir; extern __typeof (dirfd) __dirfd; extern void __scandir_cancel_handler (void *arg) attribute_hidden; |