git: 9front

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

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