X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fstdio%2Fstderr.c;h=3fd8f81d76ec4ed4cef8680914b822be55067831;hb=8c0a3d9e5c169fc9d0f246ab59362b658b029ad7;hp=3bdaffbc13022cdf333e1fe65235c48b5dbdeade;hpb=e3cd6c5c265cd481db6e0c5b529855d99f0bda30;p=musl diff --git a/src/stdio/stderr.c b/src/stdio/stderr.c index 3bdaffbc..3fd8f81d 100644 --- a/src/stdio/stderr.c +++ b/src/stdio/stderr.c @@ -6,8 +6,11 @@ static FILE f = { .buf_size = 0, .fd = 2, .flags = F_PERM | F_NORD, + .lbf = -1, .write = __stdio_write, .seek = __stdio_seek, .close = __stdio_close, + .lock = -1, }; FILE *const stderr = &f; +FILE *const __stderr_used = &f;