mirror of
https://github.com/RGBCube/serenity
synced 2025-05-24 21:25:07 +00:00
10 lines
217 B
C
10 lines
217 B
C
#pragma once
|
|
|
|
#ifdef __serenity__
|
|
#include <Kernel/kstdio.h>
|
|
#else
|
|
#include <stdio.h>
|
|
#define kprintf printf
|
|
#define dbgprintf printf
|
|
#define dbgputstr(characters, length) fwrite(characters, 1, length, stdout)
|
|
#endif
|