]> git.lizzy.rs Git - plan9front.git/blob - sys/src/libstdio/rewind.c
dpost prologue: update /radicalex to fix square displacement (thanks umbraticus and...
[plan9front.git] / sys / src / libstdio / rewind.c
1 /*
2  * pANS stdio -- rewind
3  */
4 #include "iolib.h"
5 void rewind(FILE *f){
6         fseek(f, 0L, SEEK_SET);
7 }