mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 01:31:08 +00:00
Define types ifndef
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@18966 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
ab3dc7904c
commit
ba6c91e5f1
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-03-29 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Headers/Foundation/NSCoder.h (uint8_t, int32_t, int64_t): Define
|
||||
only ifndef (sugg. from Peter Cooper <comrade-gs@obverse.com.au>)
|
||||
|
||||
Mon Mar 29 17:19:40 BST 2004 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* Tools/autogsdoc.m: Use @"..." @"..." for concatenated string
|
||||
|
|
|
@ -82,9 +82,15 @@
|
|||
* MacOS-X adds some typedefs that GNUstep already has by another name.
|
||||
*/
|
||||
#include <GSConfig.h>
|
||||
#ifndef uint8_t
|
||||
#define uint8_t gsu8
|
||||
#endif
|
||||
#ifndef int32_t
|
||||
#define int32_t gss32
|
||||
#endif
|
||||
#ifndef int64_t
|
||||
#define int64_t gss64
|
||||
#endif
|
||||
|
||||
|
||||
/** <override-subclass />
|
||||
|
|
Loading…
Reference in a new issue