summaryrefslogtreecommitdiff
path: root/libc/src/stdio.c
blob: eab9c7e02a837fd892e8044ddf4252c80319bef9 (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

FILE * stdin, * stdout, * stderr;

void __sinit(struct _reent * reent) {
    stdin->fd = 0;
    stdout->fd = 1;
    stderr->fd = 2;
}