diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-01-29 14:56:56 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-01-29 14:56:56 +0000 |
commit | c5db1d4612f80820cdf2123674c6771892ef5ea9 (patch) | |
tree | 3ef801055907264fceb35f63326be53e895b2bba | |
parent | b6b89abbdb9c0c53d47b2edd891489a6748a729e (diff) |
- s/if USE___THREAD/if defined USE___THREAD && USE___THREAD/g
-rw-r--r-- | libc/sysdeps/linux/common/bits/uClibc_errno.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/bits/uClibc_errno.h b/libc/sysdeps/linux/common/bits/uClibc_errno.h index 4cb2a8caa..c7de8b56e 100644 --- a/libc/sysdeps/linux/common/bits/uClibc_errno.h +++ b/libc/sysdeps/linux/common/bits/uClibc_errno.h @@ -12,7 +12,7 @@ extern int _dl_errno; // attribute_hidden; #elif defined __UCLIBC_HAS_THREADS__ # include <tls.h> -# if USE___THREAD +# if defined USE___THREAD && USE___THREAD # undef errno # ifndef NOT_IN_libc # define errno __libc_errno @@ -33,7 +33,7 @@ extern int *__errno_location (void) __THROW __attribute__ ((__const__)) ; # if defined __UCLIBC_HAS_THREADS__ # include <tls.h> -# if USE___THREAD +# if defined USE___THREAD && USE___THREAD libc_hidden_proto(__errno_location) # endif # endif |