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