cea5ddbb5c9eb9146c9e2d10aca57c6859426e5a
[musl] / src / stdio / fsetpos.c
1 #include "stdio_impl.h"
2 #include "libc.h"
3
4 int fsetpos(FILE *f, const fpos_t *pos)
5 {
6         return __fseeko(f, *(const long long *)pos, SEEK_SET);
7 }
8
9 LFS64(fsetpos);