Luna/libc/src/stdio.cpp
apio 129e3c434a
Some checks failed
continuous-integration/drone/push Build is failing
Switch to C for userspace, with a very bare-bones libc!!
2023-01-06 13:31:14 +01:00

12 lines
173 B
C++

#include <stdio.h>
#include <sys/syscall.h>
#include <unistd.h>
extern "C"
{
void console_print(const char* str)
{
syscall(SYS_console_print, str);
}
}