X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Ffreopen.c;h=57c3cd293b986f857bf96a50db2bd26107d57ac4;hb=8c0a3d9e5c169fc9d0f246ab59362b658b029ad7;hp=958dbd20fe7a8d3cb459ae8024e7018958e2db53;hpb=aa398f56fa398f2202b04e82c67f822f3233786f;p=musl diff --git a/src/stdio/freopen.c b/src/stdio/freopen.c index 958dbd20..57c3cd29 100644 --- a/src/stdio/freopen.c +++ b/src/stdio/freopen.c @@ -7,7 +7,7 @@ /* Locking is not necessary because, in the event of failure, the stream * passed to freopen is invalid as soon as freopen is called. */ -FILE *freopen(const char *filename, const char *mode, FILE *f) +FILE *freopen(const char *restrict filename, const char *restrict mode, FILE *restrict f) { int fl; FILE *f2; @@ -32,7 +32,6 @@ FILE *freopen(const char *filename, const char *mode, FILE *f) f->write = f2->write; f->seek = f2->seek; f->close = f2->close; - f->flush = f2->flush; fclose(f2); return f;