shithub: riscv

ref: aec3d8022ae0aa2f7209970df0399c1242af20c9
dir: /sys/src/libstdio/rewind.c/

View raw version
/*
 * pANS stdio -- rewind
 */
#include "iolib.h"
void rewind(FILE *f){
	fseek(f, 0L, SEEK_SET);
}