mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 13:50:47 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@9705 72102866-910b-0410-8b05-ffd578937521
17 lines
359 B
Objective-C
17 lines
359 B
Objective-C
/* Test whether Objective-C runtime was compiled with thread support */
|
|
|
|
#ifndef NeXT_RUNTIME
|
|
/* Dummy NXConstantString impl for so libobjc that doesn't include it */
|
|
#include <objc/NXConstStr.h>
|
|
@implementation NXConstantString
|
|
@end
|
|
#endif
|
|
|
|
/* From thr.c */
|
|
extern int __objc_init_thread_system(void);
|
|
|
|
int
|
|
main()
|
|
{
|
|
return (__objc_init_thread_system());
|
|
}
|