зеркало из https://github.com/mozilla/gecko-dev.git
15 строки
234 B
C
15 строки
234 B
C
|
# include "gcconfig.h"
|
||
|
# include <stdio.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
# if defined(IRIX_THREADS) || defined(LINUX_THREADS)
|
||
|
printf("-lpthread\n");
|
||
|
# endif
|
||
|
# ifdef SOLARIS_THREADS
|
||
|
printf("-lthread -ldl\n");
|
||
|
# endif
|
||
|
return 0;
|
||
|
}
|
||
|
|