From ad7cd05fc10aab499c4ceb14a546eedf92b49f12 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Boric Date: Wed, 28 Apr 2021 12:22:20 +0200 Subject: [PATCH] AK: Fix redefinition of macro inside AK/Platform.h --- AK/Platform.h | 1 + 1 file changed, 1 insertion(+) diff --git a/AK/Platform.h b/AK/Platform.h index 0d6801cab7f..8842a201cd4 100644 --- a/AK/Platform.h +++ b/AK/Platform.h @@ -47,6 +47,7 @@ #ifndef __serenity__ # include +# undef PAGE_SIZE # define PAGE_SIZE sysconf(_SC_PAGESIZE) #endif