summaryrefslogblamecommitdiff
path: root/src/stdio/stderr.c
blob: 3fd8f81d76ec4ed4cef8680914b822be55067831 (plain) (tree)
1
2
3
4
5
6
7
8
9
                       
                                
                         
                      
                                 
                  

                               
                   
                        
                               
#include "stdio_impl.h"

static unsigned char buf[UNGET];
static FILE f = {
	.buf = buf+UNGET,
	.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;