home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / libg++-2.6.2.lha / libg++-2.6.2 / 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.