shithub: scc

ref: 428e86f306625a3192e03260a921a19c3109f57d
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);
}