1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 01:07:34 +00:00

Kernel: Remove kprintf()

There are no remaining users of this API.
This commit is contained in:
Andreas Kling 2021-02-17 16:33:43 +01:00
parent 40e5210036
commit 5f610417d0
3 changed files with 0 additions and 42 deletions

View file

@ -31,7 +31,6 @@
extern "C" {
int dbgputstr(const char*, int);
int kernelputstr(const char*, int);
int kprintf(const char* fmt, ...) __attribute__((format(printf, 1, 2)));
int snprintf(char* buf, size_t, const char* fmt, ...) __attribute__((format(printf, 3, 4)));
void set_serial_debug(bool on_or_off);
int get_serial_debug();