home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / libg++-2.7.1-base.tgz / libg++-2.7.1-src.tar / fsf / libg++ / libio / stdio / fdopen.c < prev    next >
C/C++ Source or Header  |  1993-08-20  |  122b  |  10 lines

  1. #include "libioP.h"
  2.  
  3. _IO_FILE *
  4. fdopen (fd, mode)
  5.      int fd;
  6.      const char *mode;
  7. {
  8.   return _IO_fdopen (fd, mode);
  9. }
  10.