From 6331db3fd251ddc350913cc1e8a7941740c25f63 Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Tue, 10 Jan 2012 19:37:32 +0530 Subject: [PATCH] limits.h: Include page.h when relying on PAGE_SIZE limits.h relies on PAGE_SIZE being defined without actually including page.h. Make sure this is included to avoid compilation failures. Signed-off-by: Arun Raghavan --- libc/include/limits.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libc/include/limits.h b/libc/include/limits.h index 1de8ea611..d691a8f01 100644 --- a/libc/include/limits.h +++ b/libc/include/limits.h @@ -90,6 +90,7 @@ #endif #ifndef PAGESIZE +#include #define PAGESIZE PAGE_SIZE #endif