BSD 4 release
[unix-history] / usr / src / libc / stdio / clrerr.c
#include <stdio.h>
clearerr(iop)
register struct _iobuf *iop;
{
iop->_flag &= ~(_IOERR|_IOEOF);
}