diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-01-13 04:31:16 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-01-13 04:31:16 +0100 |
commit | 17c7bf01a51c8ba18b1444603bced4cc723900b0 (patch) | |
tree | 34d6cd2f401493ee3e81748a53b506818295f0ff /Kernel | |
parent | 8f8c8d1ca3443ca094ee80beb520110b948a0395 (diff) | |
download | serenity-17c7bf01a51c8ba18b1444603bced4cc723900b0.zip |
Fix Userland build.
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/kstdio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/kstdio.h b/Kernel/kstdio.h index 95f2b29948..b69a2746d9 100644 --- a/Kernel/kstdio.h +++ b/Kernel/kstdio.h @@ -2,4 +2,6 @@ #include "kprintf.h" +#ifndef USERLAND #define printf dbgprintf +#endif |