shithub: scc

ref: eb8459e384b8d2597f51e944c4cfff40480c9fff
dir: /lib/c/src/rewind.c/

View raw version

#include <stdio.h>
#undef rewind

void
rewind(FILE *fp)
{
	fp->flags &= ~_IOERR;
	fseek(fp, 0, SEEK_SET);
	clearerr(fp);
}