X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Ffsetpos.c;h=779cb3ccf4d37a6388221a5ad6891f9f44182c2c;hb=246f1c811448f37a44b41cd8df8d0ef9736d95f4;hp=77ab8d820603401a71804a85cc4d005eaa22ad60;hpb=dec8f0a4fa7aa533c843e6eaec862be674ff3a1a;p=musl diff --git a/src/stdio/fsetpos.c b/src/stdio/fsetpos.c index 77ab8d82..779cb3cc 100644 --- a/src/stdio/fsetpos.c +++ b/src/stdio/fsetpos.c @@ -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);