#ifndef lint static char sccsid[] = "@(#)clrerr.c 5.1 (Berkeley) 06/05/85"; #endif not lint #include #undef clearerr clearerr(iop) register FILE *iop; { iop->_flag &= ~(_IOERR|_IOEOF); }