X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Ffsetpos.c;h=779cb3ccf4d37a6388221a5ad6891f9f44182c2c;hb=9b132e556774c744f9052581d2d8d0fab417e97c;hp=77ab8d820603401a71804a85cc4d005eaa22ad60;hpb=63a4c9adf227a6f6a5f7f70f6dc3f8863f846927;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);