From 66d59410779c503e32dcd629cb2a24145207a870 Mon Sep 17 00:00:00 2001 From: Andy-Python-Programmer Date: Thu, 27 Jan 2022 15:06:56 +1100 Subject: [PATCH] vmm: fix implicit declaration of print Signed-off-by: Andy-Python-Programmer --- stage23/mm/vmm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/stage23/mm/vmm.c b/stage23/mm/vmm.c index 2f99193a..c6eebbe8 100644 --- a/stage23/mm/vmm.c +++ b/stage23/mm/vmm.c @@ -3,6 +3,7 @@ #include #include #include +#include #include #define PT_SIZE ((uint64_t)0x1000)