1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:57:35 +00:00

LibBareMetal: Add support for kernel log stream

This commit is contained in:
Liav A 2020-02-28 17:07:46 +02:00 committed by Andreas Kling
parent 214f934465
commit dc01a71fac
2 changed files with 14 additions and 1 deletions

View file

@ -31,6 +31,7 @@
extern "C" {
int dbgprintf(const char* fmt, ...);
int dbgputstr(const char*, int);
int kernelputstr(const char*, int);
int kprintf(const char* fmt, ...);
int sprintf(char* buf, const char* fmt, ...);
void set_serial_debug(bool on_or_off);