summaryrefslogtreecommitdiff
path: root/sysdeps/unix/fdopendir.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2006-02-13 07:30:06 +0000
committerJakub Jelinek <jakub@redhat.com>2006-02-13 07:30:06 +0000
commitbb786851edfb584a36b3f2674eb024af6f33f319 (patch)
tree4243fee7b513ae79b63f94593d5e9e0b2bbe86c5 /sysdeps/unix/fdopendir.c
parenta7343889536746d3c1902f85c2075ee19ee58c7a (diff)
Updated to fedora-glibc-20060213T0650
Diffstat (limited to 'sysdeps/unix/fdopendir.c')
-rw-r--r--sysdeps/unix/fdopendir.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/unix/fdopendir.c b/sysdeps/unix/fdopendir.c
index 528f180fcb..565ce1ed72 100644
--- a/sysdeps/unix/fdopendir.c
+++ b/sysdeps/unix/fdopendir.c
@@ -25,7 +25,7 @@
DIR *
-fdopendir (int fd)
+__fdopendir (int fd)
{
struct stat64 statbuf;
@@ -49,3 +49,4 @@ fdopendir (int fd)
return __alloc_dir (fd, false, &statbuf);
}
+weak_alias (__fdopendir, fdopendir)