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
commit 114768562a
Notes: sideshowbarker 2024-07-19 13:33:25 +09:00

View file

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