fix bug in dladdr that prevented resolving addresses in the PLT
[oweals/musl.git] / src / stdio / stdout.c
index bf6eea6c0b25408d4af99f10d9daf3dc33636bd1..3855dd0be2f812906d2493ad0f47b46ee43e8233 100644 (file)
@@ -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;