summary refs log tree commit diff
path: root/sysdeps/mach/hurd/seekdir.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2017-09-28 00:41:02 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2017-09-28 00:49:59 +0200
commit64a4af28a62e9f305c82bc9649bbe065fffdeb0d (patch)
tree70b8b85f7ac1b13ac568e446ebd433c945295cf2 /sysdeps/mach/hurd/seekdir.c
parent52a1f1814ef530d8c78442f2bcaf28f4f2575790 (diff)
downloadglibc-64a4af28a62e9f305c82bc9649bbe065fffdeb0d.tar.gz
glibc-64a4af28a62e9f305c82bc9649bbe065fffdeb0d.tar.xz
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 'sysdeps/mach/hurd/seekdir.c')
-rw-r--r--sysdeps/mach/hurd/seekdir.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/seekdir.c b/sysdeps/mach/hurd/seekdir.c
index 8d3020b02c..68f7ce07c5 100644
--- a/sysdeps/mach/hurd/seekdir.c
+++ b/sysdeps/mach/hurd/seekdir.c
@@ -22,9 +22,8 @@
 #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
@@ -35,3 +34,5 @@ seekdir (DIR *dirp, long int pos)
   dirp->__size = 0;
   __libc_lock_unlock (dirp->__lock);
 }
+
+weak_alias (__seekdir, seekdir)