home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / libc / stdio / freopen.c < prev    next >
Encoding:
C/C++ Source or Header  |  1979-05-05  |  167 b   |  13 lines

  1. #include <stdio.h>
  2.  
  3. FILE *
  4. freopen(file, mode, iop)
  5.     char *file, *mode;
  6.     register FILE *iop;
  7. {
  8.     FILE *_endopen();
  9.  
  10.     fclose(iop);
  11.     return(_endopen(file, mode, iop));
  12. }
  13.