libs-base/config/config_thread.m
fedor 302c691e79 Merge from dawn
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@4853 72102866-910b-0410-8b05-ffd578937521
1999-09-09 02:56:20 +00:00

10 lines
190 B
Objective-C

/* 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());
}