reduce spurious inclusion of libc.h
[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);