xref: /plan9/sys/src/ape/lib/ap/stdio/rewind.c (revision 58da3067adcdccaaa043d0bfde28ba83b7ced07d)
1 /*
2  * pANS stdio -- rewind
3  */
4 #include "iolib.h"
5 void rewind(FILE *f){
6 	fseek(f, 0L, SEEK_SET);
7 }
8