shithub: scc

ref: 07c3fc899a4788187f52b99961c7ae1777201d5b
dir: /lib/c/stdio/rewind.c/

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

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