Bell 32V development
[unix-history] / usr / src / libc / stdio / clrerr.c
CommitLineData
1f92ea9c
TL
1#include <stdio.h>
2
3clearerr(iop)
4register struct _iobuf *iop;
5{
6 iop->_flag &= ~(_IOERR|_IOEOF);
7}