minot inttype/stdint tweaks

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@37326 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2013-10-30 03:51:32 +00:00
parent 0de0d89cda
commit 00963be77a
2 changed files with 5 additions and 3 deletions

View file

@ -1,11 +1,10 @@
#include "ObjectiveC2/objc/capabilities.h"
#include <stdint.h>
/**
* Bitmask of all of the capabilities compiled into this version of the
* runtime.
*/
static const int32_t caps = 0
static const int caps = 0
| (1 << OBJC_CAP_EXCEPTIONS)
| (1 << OBJC_CAP_SYNCRONIZE)
| (1 << OBJC_CAP_PROPERTIES);

View file

@ -20,7 +20,10 @@
#include "config.h"
#include <ctype.h>
#ifdef HAVE_STDINT_H
#if defined(HAVE_INTTYPES_H)
#include <inttypes.h>
#elif defined(HAVE_STDINT_H)
#include <stdint.h>
#endif