mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:04:59 +00:00
11 lines
198 B
C
11 lines
198 B
C
#pragma once
|
|
|
|
extern "C" {
|
|
int dbgprintf(const char *fmt, ...);
|
|
int kprintf(const char *fmt, ...);
|
|
int ksprintf(char* buf, const char *fmt, ...);
|
|
}
|
|
|
|
#ifndef USERLAND
|
|
#define printf dbgprintf
|
|
#endif
|