blob: 7f4edf05883aa8bf05a0b7e323b547e463b7ce92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <stdio.h>
#include <unistd.h>
FILE __stdout_FILE = {
.write = write_fd,
.read = read_fd,
.is_eof = 0,
.has_error = 0,
.seek = NULL,
.cookie = NULL,
.fd = 1,
};
FILE __stderr_FILE;
|