manual page distributed with 4.2BSD
[unix-history] / usr / src / lib / libc / stdio / clrerr.c
CommitLineData
41e01b3e
S
1/* @(#)clrerr.c 4.2 (Berkeley) %G% */
2#include <stdio.h>
3#undef clearerr
f06c3867
BJ
4
5clearerr(iop)
41e01b3e 6 register FILE *iop;
f06c3867
BJ
7{
8 iop->_flag &= ~(_IOERR|_IOEOF);
9}