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