mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 16:45:07 +00:00
8 lines
116 B
C
8 lines
116 B
C
#pragma once
|
|
|
|
#ifdef __serenity__
|
|
#include <Kernel/kstdio.h>
|
|
#else
|
|
#include <stdio.h>
|
|
#define kprintf printf
|
|
#endif
|