remove LFS64 symbol aliases; replace with dynamic linker remapping
[musl] / src / stdio / fsetpos.c
index 77ab8d8..779cb3c 100644 (file)
@@ -4,5 +4,3 @@ int fsetpos(FILE *f, const fpos_t *pos)
 {
        return __fseeko(f, *(const long long *)pos, SEEK_SET);
 }
-
-weak_alias(fsetpos, fsetpos64);