Fix Userland build.

This commit is contained in:
Andreas Kling 2019-01-13 04:31:16 +01:00
parent 8f8c8d1ca3
commit 17c7bf01a5
Notes: sideshowbarker 2024-07-19 16:03:17 +09:00
2 changed files with 4 additions and 0 deletions

View file

@ -13,6 +13,8 @@
#include <utility>
#endif
#include <AK/Types.h>
ALWAYS_INLINE void fast_dword_copy(dword* dest, const dword* src, size_t count)
{
#ifdef SERENITY

View file

@ -2,4 +2,6 @@
#include "kprintf.h"
#ifndef USERLAND
#define printf dbgprintf
#endif