only use memcpy realloc to shrink if an exact-sized free chunk exists
[oweals/musl.git] / src / stdio / fsetpos.c
index 6310424ed4caca93bbb9a79dce646f8894eaea47..77ab8d820603401a71804a85cc4d005eaa22ad60 100644 (file)
@@ -5,4 +5,4 @@ int fsetpos(FILE *f, const fpos_t *pos)
        return __fseeko(f, *(const long long *)pos, SEEK_SET);
 }
 
-LFS64(fsetpos);
+weak_alias(fsetpos, fsetpos64);