X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=src%2Fstdio%2Ffsetpos.c;h=77ab8d820603401a71804a85cc4d005eaa22ad60;hb=d1395c43c019aec6b855cf3c656bf47c8a719e7f;hp=cea5ddbb5c9eb9146c9e2d10aca57c6859426e5a;hpb=5ce3737931bb411a8d167356d4d0287b53b0cbdc;p=musl diff --git a/src/stdio/fsetpos.c b/src/stdio/fsetpos.c index cea5ddbb..77ab8d82 100644 --- a/src/stdio/fsetpos.c +++ b/src/stdio/fsetpos.c @@ -1,9 +1,8 @@ #include "stdio_impl.h" -#include "libc.h" int fsetpos(FILE *f, const fpos_t *pos) { return __fseeko(f, *(const long long *)pos, SEEK_SET); } -LFS64(fsetpos); +weak_alias(fsetpos, fsetpos64);