From 9fd3162fbdd0181fae9f1a8d5cdd4ea460e7d8ad Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Sat, 16 Aug 2014 11:57:24 -0400 Subject: [PATCH] Fix Mac build. --- loader/utility.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/loader/utility.cpp b/loader/utility.cpp index 032a831..5de2716 100644 --- a/loader/utility.cpp +++ b/loader/utility.cpp @@ -39,6 +39,8 @@ #define PAGE_SIZE 4096 #define PAGE_ALIGN_UP(x) ((x + PAGE_SIZE - 1) & ~(PAGE_SIZE - 1)) +#elif defined __APPLE__ +#include #endif #if defined _WIN32