home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / gnu / gawk213s.lzh / GAWK213S / DUP2.C < prev    next >
C/C++ Source or Header  |  1993-07-29  |  126b  |  13 lines

  1. #if 0
  2. #include <fcntl.h>
  3. #endif
  4.  
  5. int
  6. dup2 (old, new)
  7. int old, new;
  8. {
  9.     (void) close(new);
  10.  
  11.     return fcntl(old, F_DUPFD, new);
  12. }
  13.