From 114768562a1712a4f4f808c03fe22710725e5f50 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 18 Jun 2019 08:53:26 +0200 Subject: [PATCH] AK: Including should pull in etc on host builds. --- AK/kstdio.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/AK/kstdio.h b/AK/kstdio.h index 8b5e7ff0f1..42cc39235e 100644 --- a/AK/kstdio.h +++ b/AK/kstdio.h @@ -1,3 +1,8 @@ #pragma once +#ifdef __serenity__ #include +#else +#include +#define kprintf printf +#endif