mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
a6c9c8749a
commit
d0bd5c8983
2 changed files with 9 additions and 2 deletions
|
@ -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.
|
||||
|
|
|
@ -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...) \
|
||||
|
|
Loading…
Reference in a new issue