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