aboutsummaryrefslogtreecommitdiff
path: root/user/lib/libc/stream.c
blob: 049ee4ec53e1ceba1f62ed350efeadf832a1ba8a (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "stdio.h"

static FILE stdstreams[3] = {
    {.fd = 0, .offset = 0},
    {.fd = 1, .offset = 0},
    {.fd = 2, .offset = 0},
};

FILE *stdin = &stdstreams[0];
FILE *stdout = &stdstreams[1];
FILE *stderr = &stdstreams[2];