major stdio overhaul, using readv/writev, plus other changes
[musl] / src / stdio / stdout.c
1 #include "stdio_impl.h"
2
3 static unsigned char buf[BUFSIZ+UNGET];
4 static FILE f = {
5         .buf = buf+UNGET,
6         .buf_size = sizeof buf-UNGET,
7         .fd = 1,
8         .flags = F_PERM | F_NORD,
9         .lbf = '\n',
10         .write = __stdout_write,
11         .seek = __stdio_seek,
12         .close = __stdio_close,
13 };
14 FILE *const stdout = &f;
15
16 /* overrides symbol in fflush.c, used for flushing NULL */
17 FILE *const __stdout_to_flush = &f;