AK: Including <AK/kstdio.h> should pull in <stdio.h> etc on host builds.

This commit is contained in:
Andreas Kling 2019-06-18 08:53:26 +02:00
parent 28a4963242
commit 114768562a

View file

@ -1,3 +1,8 @@
#pragma once
#ifdef __serenity__
#include <Kernel/kstdio.h>
#else
#include <stdio.h>
#define kprintf printf
#endif