mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
11 lines
217 B
C
11 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
|