dns response handling: ignore presence of wrong-type RRs
[musl] / src / stdio / fsetpos.c
1 #include "stdio_impl.h"
2
3 int fsetpos(FILE *f, const fpos_t *pos)
4 {
5         return __fseeko(f, *(const long long *)pos, SEEK_SET);
6 }