mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
9 lines
118 B
C
9 lines
118 B
C
|
#pragma once
|
||
|
|
||
|
#ifdef SERENITY_KERNEL
|
||
|
#include <Kernel/kstdio.h>
|
||
|
#else
|
||
|
#include <cstdio>
|
||
|
#define kprintf printf
|
||
|
#endif
|