select: fix 64-bit timeout truncation on pre-time64 kernels
[musl] / src / stdio / fsetpos.c
index 6310424..779cb3c 100644 (file)
@@ -4,5 +4,3 @@ int fsetpos(FILE *f, const fpos_t *pos)
 {
        return __fseeko(f, *(const long long *)pos, SEEK_SET);
 }
-
-LFS64(fsetpos);