summaryrefslogtreecommitdiff
path: root/userland/libc/stdio/stderr.c
blob: 76597e2dd2ceaafd7fc851775ac2515338b6685f (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include <unistd.h>

FILE __stderr_FILE = {
    .write = write_fd,
    .read = read_fd,
    .is_eof = 0,
    .has_error = 0,
    .cookie = NULL,
    .fd = 2,
};