shithub: scc

ref: e2fe38d6738c7d231fd926a36a0b1e173af7f2d2
dir: /lib/c/rewind.c/

View raw version

#include <stdio.h>
#undef rewind

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