X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fstdio%2Frewind.c;h=6f4b58b5468900cab60ca6e28c494ac2eea1c645;hp=7944b434d8174ff32789ce4e00bd0bb4271a09f4;hb=a6238c30d169cbac6bc4c4977622242063e32270;hpb=71e6be641fb1e4080c2bb901e83423546d0ad5af diff --git a/src/stdio/rewind.c b/src/stdio/rewind.c index 7944b434..6f4b58b5 100644 --- a/src/stdio/rewind.c +++ b/src/stdio/rewind.c @@ -1,6 +1,9 @@ -#include +#include "stdio_impl.h" void rewind(FILE *f) { - fseek(f, 0, SEEK_SET); + FLOCK(f); + __fseeko_unlocked(f, 0, SEEK_SET); + f->flags &= ~F_ERR; + FUNLOCK(f); }