Ensure that the limits declarations that we use are actually exposed when compiling ObjC++.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@35030 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Chisnall 2012-04-06 12:01:34 +00:00
parent 337118ee64
commit b1449b2cba

View file

@ -29,7 +29,14 @@
#ifndef __NSObjCRuntime_h_GNUSTEP_BASE_INCLUDE
#define __NSObjCRuntime_h_GNUSTEP_BASE_INCLUDE
#ifdef __cplusplus
#ifndef __STDC_LIMIT_MACROS
#define __STDC_LIMIT_MACROS 1
#endif
#endif
#include <stdarg.h>
#include <stdint.h>
#include <limits.h>
#include <float.h>