ref: aed5649a31a57b391bfe1f5cb44e0b0c42c8cea0 dir: /sys/src/libstdio/rewind.c/
/* * pANS stdio -- rewind */ #include "iolib.h" void rewind(FILE *f){ fseek(f, 0L, SEEK_SET); }