git: 9front

ref: 347e7dcbf0cbce21fc1342656bb9bb8ea58ad380
dir: /sys/src/ape/lib/ap/stdio/rewind.c/

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