mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-12 00:00:06 +00:00
8 lines
126 B
C
8 lines
126 B
C
|
#include <tls.h>
|
||
|
|
||
|
#if defined HAVE___THREAD && defined HAVE_TLS_MODEL_ATTRIBUTE
|
||
|
int __thread tlsvar;
|
||
|
#else
|
||
|
int tlsvar;
|
||
|
#endif
|