Luna/libc/src/stdio.cpp

12 lines
173 B
C++
Raw Normal View History

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