diff options
author | Khem Raj <kraj@mvista.com> | 2008-12-23 10:16:51 +0000 |
---|---|---|
committer | Khem Raj <kraj@mvista.com> | 2008-12-23 10:16:51 +0000 |
commit | f6fc6973e34a3c250457aed1710ee0872800acdd (patch) | |
tree | 6c7a5a33037fecf05340829155d636a5994ba7a2 /libc/inet/resolv.c | |
parent | 6374ca896086574af61eb37ef371e3371b10bb5c (diff) | |
download | uClibc-alpine-f6fc6973e34a3c250457aed1710ee0872800acdd.tar.bz2 uClibc-alpine-f6fc6973e34a3c250457aed1710ee0872800acdd.tar.xz |
Get non nptl threads compiled on x86.
Diffstat (limited to 'libc/inet/resolv.c')
-rw-r--r-- | libc/inet/resolv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/inet/resolv.c b/libc/inet/resolv.c index 86f189a5f..e5b2622d0 100644 --- a/libc/inet/resolv.c +++ b/libc/inet/resolv.c @@ -1254,7 +1254,7 @@ void res_close(void) which can have an alias. */ struct __res_state _res __attribute__((section (".bss"))); #else -struct __res_state _res __attribute__((section (".bss"))) attribute_hidden; +struct __res_state _res __attribute__((section (".bss"))) ;//attribute_hidden; # if defined __UCLIBC_HAS_THREADS_NATIVE__ # undef __resp @@ -1275,7 +1275,7 @@ struct __res_state *__resp = &_res; #endif #ifdef L_res_state -# if defined __UCLIBC_HAS_THREADS__ +# if defined __UCLIBC_HAS_THREADS_NATIVE__ struct __res_state * __res_state (void) { |