Fix files missed from last ocmmit.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@28780 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2009-10-07 14:54:37 +00:00
parent a6c9c8749a
commit d0bd5c8983
2 changed files with 9 additions and 2 deletions

View file

@ -144,8 +144,6 @@ GS_EXPORT void
GSObjCSetVal(NSObject *self, const char *key, id val, SEL sel,
const char *type, unsigned size, int offset);
#include <GNUstepBase/objc-gnu2next.h>
/*
* This section includes runtime functions
* to query and manipulate the ObjC runtime structures.

View file

@ -62,6 +62,15 @@
@interface NSObject (MissingFromMacOSX)
+ (IMP) methodForSelector: (SEL)aSelector;
@end
#else
#define class_nextMethodList(aClass,anIterator) (({\
if (*(anIterator) == 0) \
*((struct objc_method_list**)(anIterator)) = (aClass)->methods; \
else \
*(anIterator) = (*((struct objc_method_list**)(anIterator)))->method_next; \
}), *(anIterator))
#endif
#define BDBGPrintf(format, args...) \