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 <arun.raghavan@collabora.co.uk>
This commit is contained in:
Arun Raghavan 2012-01-10 19:37:32 +05:30
parent 5af97ca851
commit 6331db3fd2
1 changed files with 1 additions and 0 deletions

View File

@ -90,6 +90,7 @@
#endif
#ifndef PAGESIZE
#include <asm/page.h>
#define PAGESIZE PAGE_SIZE
#endif