diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-14 07:46:33 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-14 07:46:33 +0000 |
commit | f793c280cf2f6f2bc2c56cdf1ba9e04b6ea522b7 (patch) | |
tree | 8f68af9266761acd43d71bd7efe87b89ce9efbdf /libobjc/linking.m | |
parent | fceabe869620302db2f5796a4c56c5c0b1c4191f (diff) | |
download | gcc-f793c280cf2f6f2bc2c56cdf1ba9e04b6ea522b7.tar.gz |
2004-06-14 Andrew Pinski <pinskia@physics.uc.edu>
* linking.m (_objcInit): New empty function
for Darwin only.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83082 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libobjc/linking.m')
-rw-r--r-- | libobjc/linking.m | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libobjc/linking.m b/libobjc/linking.m index a54ae012356..7a5c04728b3 100644 --- a/libobjc/linking.m +++ b/libobjc/linking.m @@ -38,3 +38,9 @@ void __objc_linking (void) [NXConstantString name]; } +#ifdef __APPLE__ +void _objcInit(void) +{ +} +#endif + |