clearerr.c 261 B

1234567891011121314
  1. /* $Id$ */
  2. /*
  3. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  4. * See the copyright notice in the ACK home directory, in the file "Copyright".
  5. */
  6. #include <stdio.h>
  7. clearerr(iop)
  8. FILE *iop;
  9. {
  10. iop->_flags &= ~(IO_ERR|IO_EOF);
  11. }