Merge "ndk: Include limits.h in wchar.h as it contains the definitions for INT_MAX and INT_MIN. Without this fix, the following lines will fail when configuring gnu stdlibc++ library. (INT_MAX and INT_MIN are undefined.)"

This commit is contained in:
Andrew Hsieh
2012-03-27 04:33:52 -07:00
committed by android code review

View File

@@ -28,6 +28,7 @@
#ifndef _WCHAR_H_
#define _WCHAR_H_
#include <limits.h>
#include <sys/cdefs.h>
#include <stdio.h>