1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:47:34 +00:00

Add the basic character devices to kernel.

This commit is contained in:
Andreas Kling 2018-10-16 14:33:16 +02:00
parent 12e515735b
commit aec8ab0a60
13 changed files with 52 additions and 58 deletions

8
AK/kstdio.h Normal file
View file

@ -0,0 +1,8 @@
#pragma once
#ifdef SERENITY_KERNEL
#include <Kernel/kstdio.h>
#else
#include <cstdio>
#define kprintf printf
#endif