diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-10-02 07:48:42 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-10-02 07:48:42 +0000 |
commit | 9a46002fc01b1b874d768b2e8372b725a9e8b298 (patch) | |
tree | 9e3660449780967673d6a687f00329710e899537 /main.c | |
parent | 173e2f6636701f7657a0acb3dcba33e9d66b562d (diff) | |
download | ruby-9a46002fc01b1b874d768b2e8372b725a9e8b298.tar.gz |
matz
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@985 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -28,6 +28,11 @@ int _CRT_glob = 0; #include <console.h> #endif +/* to link startup code with ObjC support */ +#if defined(__APPLE__) && defined(__MACH__) +static void objcdummyfunction( void ) { objc_msgSend(); } +#endif + int main(argc, argv, envp) int argc; |