mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
0de0d89cda
commit
00963be77a
2 changed files with 5 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue