1 #include "stdio_impl.h"
2 
fsetpos(FILE * f,const fpos_t * pos)3 int fsetpos(FILE* f, const fpos_t* pos) {
4     return __fseeko(f, *(const off_t*)pos, SEEK_SET);
5 }
6