shithub: riscv

ref: 4e9f39a3ec0712542af0d035c79b3bf0eb2f2cd3
dir: /sys/src/libstdio/rewind.c/

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