mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05: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
|