* sysdeps/mach/hurd/revoke.c (revoke): Likewise.
* sysdeps/unix/bsd/unlockpt.c (unlockpt): Use __revoke instead of
revoke.
+ * 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.
2017-09-26 H.J. Lu <hongjiu.lu@intel.com>
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;
void
__rewinddir (DIR *dirp)
{
- seekdir (dirp, (off_t) 0L);
+ __seekdir (dirp, (off_t) 0L);
}
libc_hidden_def (__rewinddir)
weak_alias (__rewinddir, rewinddir)
#include "dirstream.h"
/* Seek to position POS in DIRP. */
-/* XXX should be __seekdir ? */
void
-seekdir (DIR *dirp, long int pos)
+__seekdir (DIR *dirp, long int pos)
{
__libc_lock_lock (dirp->__lock);
/* Change our entry index pointer to POS and discard any data already
dirp->__size = 0;
__libc_lock_unlock (dirp->__lock);
}
+
+weak_alias (__seekdir, seekdir)