glibc/tls.make.c
Ulrich Drepper 3266531c78 * Makerules: USE_TLS support is now default.
* tls.make.c: Likewise.
2006-10-27 23:26:20 +00:00

10 lines
172 B
C

/* This produces a makefile fragment saying `use-thread = yes' or no. */
#include <tls.h>
#if USE___THREAD
@@@ use-thread = yes @@@
#else
@@@ use-thread = no @@@
#endif