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