ack/lang/cem/libcc/stdio/clearerr.c
1987-01-27 15:57:55 +00:00

8 lines
84 B
C

#include <stdio.h>
clearerr(iop)
FILE *iop;
{
iop->_flags &= ~(IO_ERR|IO_EOF);
}