From 9bc8a11afeed3569736b89754012e3ca22ee10f6 Mon Sep 17 00:00:00 2001 From: pommicket Date: Sun, 20 Feb 2022 13:18:21 -0800 Subject: conclusion --- 05/musl-0.6.0/src/stdio/stderr.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 05/musl-0.6.0/src/stdio/stderr.c (limited to '05/musl-0.6.0/src/stdio/stderr.c') diff --git a/05/musl-0.6.0/src/stdio/stderr.c b/05/musl-0.6.0/src/stdio/stderr.c new file mode 100644 index 0000000..4a79d4e --- /dev/null +++ b/05/musl-0.6.0/src/stdio/stderr.c @@ -0,0 +1,13 @@ +#include "stdio_impl.h" + +static unsigned char buf[1+UNGET]; +static FILE f = { + .buf = buf+UNGET, + .buf_size = 1, + .fd = 2, + .flags = F_PERM | F_NORD, + .write = __stdio_write, + .seek = __stdio_seek, + .close = __stdio_close, +}; +FILE *const stderr = &f; -- cgit v1.2.3