fix tests for C++ linkage

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@32720 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2011-03-28 13:42:01 +00:00
parent 894464b3fd
commit 4d1df68a49
3 changed files with 20 additions and 1 deletions

View file

@ -30,6 +30,10 @@
#import <Foundation/NSObject.h>
#import <Foundation/NSString.h>
#if defined(__cplusplus)
extern "C" {
#endif
/* A flag indicating that the testsuite is currently processing tests
* which are actually not expected to pass, but where we hope someone
* might have committed a bugfix.
@ -502,3 +506,6 @@ if (__value != __object) \
(X) = [NSAutoreleasePool new]
#endif
#if defined(__cplusplus)
}
#endif