Comment out decl on Darwin

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@10649 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
fedor 2001-08-03 20:43:40 +00:00
parent b3021e36e2
commit 6698b28f49
3 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2001-08-03 Adam Fedor <fedor@gnu.org>
* Source/NSObject.m: Don't decl __objc_responds_to on Darwin
* Source/NSProxy.m: Likewise.
2001-08-03 Richard Frith-Macdonald <rfm@gnu.org> 2001-08-03 Richard Frith-Macdonald <rfm@gnu.org>
* Headers/Foundation/Unicode.h: API Change * Headers/Foundation/Unicode.h: API Change

View file

@ -42,7 +42,9 @@
#include <Foundation/NSObjCRuntime.h> #include <Foundation/NSObjCRuntime.h>
#include <limits.h> #include <limits.h>
#ifndef NeXT_RUNTIME
extern BOOL __objc_responds_to(id, SEL); extern BOOL __objc_responds_to(id, SEL);
#endif
@class _FastMallocBuffer; @class _FastMallocBuffer;
static Class fastMallocClass; static Class fastMallocClass;

View file

@ -31,7 +31,9 @@
#include <Foundation/NSObjCRuntime.h> #include <Foundation/NSObjCRuntime.h>
#include "limits.h" #include "limits.h"
#ifndef NeXT_RUNTIME
extern BOOL __objc_responds_to(id, SEL); extern BOOL __objc_responds_to(id, SEL);
#endif
@implementation NSProxy @implementation NSProxy