From 2eb93324229ea1a157d7142d5ceea932ba37a03d Mon Sep 17 00:00:00 2001 From: Andrew Hsieh Date: Tue, 20 Nov 2012 16:12:33 +0800 Subject: [PATCH] Fix limits.h to include page.h which provides PAGE_SIZE See 6331db3fd251ddc350913cc1e8a7941740c25f63 and http://code.google.com/p/android/issues/detail?id=39983 Change-Id: I85083d754fe9b722efcb8ea73f17d88d505c90d1 --- ndk/platforms/android-3/include/limits.h | 1 + 1 file changed, 1 insertion(+) diff --git a/ndk/platforms/android-3/include/limits.h b/ndk/platforms/android-3/include/limits.h index 0bde5a2d9..b9d435450 100644 --- a/ndk/platforms/android-3/include/limits.h +++ b/ndk/platforms/android-3/include/limits.h @@ -106,6 +106,7 @@ #endif #ifndef PAGESIZE +#include #define PAGESIZE PAGE_SIZE #endif