date and time created 80/12/21 16:49:59 by wnj
[unix-history] / usr / src / lib / libc / stdio / clrerr.c
CommitLineData
f06c3867
BJ
1/* @(#)clrerr.c 4.1 (Berkeley) %G% */
2#include <stdio.h>
3
4clearerr(iop)
5register struct _iobuf *iop;
6{
7 iop->_flag &= ~(_IOERR|_IOEOF);
8}