Luna/libc/src/init.cpp
2023-03-19 19:19:20 +01:00

13 lines
221 B
C++

#include <stdio.h>
#include <unistd.h>
extern "C"
{
void libc_init()
{
stdin = fdopen(STDIN_FILENO, "r");
stdout = fdopen(STDOUT_FILENO, "w");
stderr = fdopen(STDERR_FILENO, "w");
}
}