mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-22 13:50:47 +00:00
11 lines
190 B
Mathematica
11 lines
190 B
Mathematica
|
/* Test whether Objective-C runtime was compiled with thread support */
|
||
|
|
||
|
/* From thr.c */
|
||
|
extern int __objc_init_thread_system(void);
|
||
|
|
||
|
int
|
||
|
main()
|
||
|
{
|
||
|
return (__objc_init_thread_system());
|
||
|
}
|