From 6698b28f4910a0390b81970bb222e53f9222e5dc Mon Sep 17 00:00:00 2001 From: fedor Date: Fri, 3 Aug 2001 20:43:40 +0000 Subject: [PATCH] Comment out decl on Darwin git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@10649 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 5 +++++ Source/NSObject.m | 2 ++ Source/NSProxy.m | 2 ++ 3 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 35ebdd22e..c0ae72345 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-08-03 Adam Fedor + + * Source/NSObject.m: Don't decl __objc_responds_to on Darwin + * Source/NSProxy.m: Likewise. + 2001-08-03 Richard Frith-Macdonald * Headers/Foundation/Unicode.h: API Change diff --git a/Source/NSObject.m b/Source/NSObject.m index 2e39e89d7..d5e142809 100644 --- a/Source/NSObject.m +++ b/Source/NSObject.m @@ -42,7 +42,9 @@ #include #include +#ifndef NeXT_RUNTIME extern BOOL __objc_responds_to(id, SEL); +#endif @class _FastMallocBuffer; static Class fastMallocClass; diff --git a/Source/NSProxy.m b/Source/NSProxy.m index c92f205bd..3035deeff 100644 --- a/Source/NSProxy.m +++ b/Source/NSProxy.m @@ -31,7 +31,9 @@ #include #include "limits.h" +#ifndef NeXT_RUNTIME extern BOOL __objc_responds_to(id, SEL); +#endif @implementation NSProxy