shithub: scc

ref: 496a51ccfcc302614f6647cc75478f5a126ff5fc
dir: /src/libc/stdio/clearerr.c/

View raw version
#include <stdio.h>
#undef clearerr

void
clearerr(FILE *fp)
{
	fp->flags &= ~(_IOERR | _IOEOF);
}