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

  1. #include    <stdio.h>
  2.  
  3. FILE *
  4. fopen(file, mode)
  5.     char *file, *mode;
  6. {
  7.     FILE *_findiop(), *_endopen();
  8.  
  9.     return(_endopen(file, mode, _findiop()));
  10. }
  11.