home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / libio-4.6.26 / stdio / fdopen.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-10  |  260 b   |  22 lines

  1. #include "libioP.h"
  2.  
  3. #ifdef __linux__
  4.  
  5. #undef HAVE_GNU_LD
  6. #define HAVE_GNU_LD
  7. #include <gnu-stabs.h>
  8.   
  9. symbol_alias (_IO_fdopen, fdopen);
  10.    
  11. #else
  12.  
  13. _IO_FILE *
  14. fdopen (fd, mode)
  15.      int fd;
  16.      const char *mode;
  17. {
  18.   return _IO_fdopen (fd, mode);
  19. }
  20.  
  21. #endif
  22.