xref: /plan9/sys/src/ape/lib/ap/stdio/fsetpos.c (revision ff8c3af2f44d95267f67219afa20ba82ff6cf7e4)
1 /*
2  * pANS stdio -- fsetpos
3  */
4 #include "iolib.h"
5 int fsetpos(FILE *f, const fpos_t *pos){
6 	return fseek(f, *pos, SEEK_SET);
7 }
8