tools-make/config_thread.m
Adam Fedor 621cc07b67 Better configuration, gui will compile without DPS
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@2954 72102866-910b-0410-8b05-ffd578937521
1998-09-03 14:35:49 +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());
}