Luna/libc/src/init.cpp

13 lines
221 B
C++
Raw Normal View History

#include <stdio.h>
#include <unistd.h>
extern "C"
{
void libc_init()
{
2023-03-19 18:19:20 +00:00
stdin = fdopen(STDIN_FILENO, "r");
stdout = fdopen(STDOUT_FILENO, "w");
stderr = fdopen(STDERR_FILENO, "w");
}
}