home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / libc / stdio / clrerr.c next >
Encoding:
C/C++ Source or Header  |  1979-01-10  |  100 b   |  8 lines

  1. #include    <stdio.h>
  2.  
  3. clearerr(iop)
  4. register struct _iobuf *iop;
  5. {
  6.     iop->_flag &= ~(_IOERR|_IOEOF);
  7. }
  8.