X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Fstdin.c;h=171ff22a9842dc74db9ccf1be15df17cfc2af2c3;hb=5b5db97f7e80bde2678aed72336a28375e800354;hp=51c9923253016bd7463c8a71d9f6ffd1abb0f1f2;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl diff --git a/src/stdio/stdin.c b/src/stdio/stdin.c index 51c99232..171ff22a 100644 --- a/src/stdio/stdin.c +++ b/src/stdio/stdin.c @@ -9,5 +9,7 @@ static FILE f = { .read = __stdio_read, .seek = __stdio_seek, .close = __stdio_close, + .lock = -1, }; FILE *const stdin = &f; +FILE *volatile __stdin_used = &f;