diff options
Diffstat (limited to 'resolv')
-rw-r--r-- | resolv/res_libc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/resolv/res_libc.c b/resolv/res_libc.c index 48d3200b7e..0b37f46aea 100644 --- a/resolv/res_libc.c +++ b/resolv/res_libc.c @@ -122,9 +122,7 @@ libc_hidden_def (__res_maybe_init) This differs from plain `struct __res_state _res;' in that it doesn't create a common definition, but a plain symbol that resides in .bss, which can have an alias. */ -struct __res_state _res __attribute__((section (".bss"))); - -#include <tls.h> +struct __res_state _res __attribute__ ((nocommon)); #undef __resp __thread struct __res_state *__resp = &_res; |