X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fstdio%2Fstdout.c;h=3855dd0be2f812906d2493ad0f47b46ee43e8233;hp=bf6eea6c0b25408d4af99f10d9daf3dc33636bd1;hb=96fbcf7d80f469e39d1dd12533f8bb8d13b64fe5;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01 diff --git a/src/stdio/stdout.c b/src/stdio/stdout.c index bf6eea6c..3855dd0b 100644 --- a/src/stdio/stdout.c +++ b/src/stdio/stdout.c @@ -7,11 +7,10 @@ static FILE f = { .fd = 1, .flags = F_PERM | F_NORD, .lbf = '\n', - .write = __stdio_write, + .write = __stdout_write, .seek = __stdio_seek, .close = __stdio_close, + .lock = -1, }; FILE *const stdout = &f; - -/* overrides symbol in fflush.c, used for flushing NULL */ -FILE *const __stdout_to_flush = &f; +FILE *const __stdout_used = &f;