diff options
author | Khem Raj <kraj@mvista.com> | 2008-12-02 03:31:28 +0000 |
---|---|---|
committer | Khem Raj <kraj@mvista.com> | 2008-12-02 03:31:28 +0000 |
commit | ce6de0b0a945e0a9f7b415b8435a652a02c83c22 (patch) | |
tree | dce10ef2a7fdf300e5694bc6fec8772b59fcfd3b | |
parent | 425bb470247c2c6c642d255178067054f3be9f8f (diff) | |
download | uClibc-alpine-ce6de0b0a945e0a9f7b415b8435a652a02c83c22.tar.bz2 uClibc-alpine-ce6de0b0a945e0a9f7b415b8435a652a02c83c22.tar.xz |
sign-off-by: Khem Raj <raj.khem@gmail.com>
Move includes out of __UCLIBC_HAS_THREADS_NATIVE__ conditional
-rw-r--r-- | libc/misc/internals/internal_errno.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/misc/internals/internal_errno.h b/libc/misc/internals/internal_errno.h index 884f86774..d591dec3b 100644 --- a/libc/misc/internals/internal_errno.h +++ b/libc/misc/internals/internal_errno.h @@ -1,12 +1,13 @@ /* * */ -#ifndef __UCLIBC_HAS_THREADS_NATIVE__ #include <features.h> #include <errno.h> #include <netdb.h> +#ifndef __UCLIBC_HAS_THREADS_NATIVE__ + #undef errno #undef h_errno |