2.9BSD/usr/src/lib/c/stdio/clrerr.c

Compare this file to the similar file:
Show the results in this format:

/*	@(#)clrerr.c	2.1	SCCS id keyword	*/
#include	<stdio.h>

clearerr(iop)
register struct _iobuf *iop;
{
	iop->_flag &= ~(_IOERR|_IOEOF);
}