Bug 1103798 - Include the correct header file for api level >= 21. r=mwu

This commit is contained in:
Kai-Zhen Li 2014-12-03 17:44:16 -08:00
parent 130be9050a
commit 50ba65ffc8

View File

@ -27,7 +27,11 @@
#include <sys/syscall.h>
#include <sys/resource.h>
#include <time.h>
#if ANDROID_VERSION >= 21
#include <limits.h>
#else
#include <asm/page.h>
#endif
#include "mozilla/DebugOnly.h"