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