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

Kernel: Add dbgputch() to kstdio.h

This adds a dbgputch() alongside dbgputstr() in kstdio.h. The function
already existed as the static function debugger_out(). It has now been
exposed to users of kstdio.h.
This commit is contained in:
Max Wipfli 2021-06-23 17:51:30 +02:00 committed by Andreas Kling
parent 441d6dcdf9
commit 67067904f5
2 changed files with 3 additions and 2 deletions

View file

@ -9,6 +9,7 @@
#include <AK/Types.h>
extern "C" {
void dbgputch(char);
void dbgputstr(const char*, size_t);
void kernelputstr(const char*, size_t);
void kernelcriticalputstr(const char*, size_t);