shithub: scc

ref: 893983575da0f76075ffd8f3d60cb23d6c3475e6
dir: /src/libc/stdio/clearerr.c/

View raw version
#include <stdio.h>

#undef clearerr

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