summaryrefslogtreecommitdiff
path: root/src/stdio/stderr.c
blob: 4a79d4e7b36a47f563d714e19e9b8273b7f22449 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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;