mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-06 22:50:44 +00:00
- Tweaked NSObject to use atomic ops with LLVM as well as gcc (this probably isn't actually needed) - Fixed SIGFPE problem on FreeBSD using proper interfaces instead of an asm hack. * Removes various mframe things from being compiled when ffcall/libffi is used (mframe.m, NSConnection.m, NSInvocation.m) * Turned a nested function in make_strings.m into a macro. Tested by Gregory - blame him for any breakage... git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@28462 72102866-910b-0410-8b05-ffd578937521
8 lines
139 B
Objective-C
8 lines
139 B
Objective-C
#include <objc/objc.h>
|
|
#include <objc/objc-api.h>
|
|
|
|
int main (void)
|
|
{
|
|
IMP (*__objc_msg_forward1)(SEL) = __objc_msg_forward;
|
|
return 0;
|
|
}
|