Luna/libc/src/init.cpp

12 lines
178 B
C++
Raw Normal View History

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