]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/posix/fdopen.c
Update.
[thirdparty/glibc.git] / sysdeps / posix / fdopen.c
index 4e7d3051eb6c1008089aa60bc61ad1e0911d5ba8..39d8463b70595343fa057bf47e48f21b0d632a54 100644 (file)
@@ -25,7 +25,7 @@ extern int __getmode (const char *mode, __io_mode *mptr);
 
 /* Open a new stream on a given system file descriptor.  */
 FILE *
-fdopen (fd, mode)
+__fdopen (fd, mode)
      int fd;
      const char *mode;
 {
@@ -71,3 +71,5 @@ fdopen (fd, mode)
 
   return stream;
 }
+
+weak_alias (__fdopen, fdopen)