diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-08-02 19:58:24 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-08-02 19:58:24 +0000 |
commit | 29cee653e8d7999e24a8567da45e063f47c2bc49 (patch) | |
tree | 2cd78e9fc98938eb7954577a6ea7bc02be98207c /include | |
parent | fc10bc8d325d1c0e08ccadaa650686d735b70d3e (diff) | |
download | glibc-29cee653e8d7999e24a8567da45e063f47c2bc49.tar.gz glibc-29cee653e8d7999e24a8567da45e063f47c2bc49.tar.xz glibc-29cee653e8d7999e24a8567da45e063f47c2bc49.zip |
Don't include tls.h if _ISOMAC is defined.
Diffstat (limited to 'include')
-rw-r--r-- | include/errno.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/errno.h b/include/errno.h index 9969b1f519..934dae791a 100644 --- a/include/errno.h +++ b/include/errno.h @@ -2,7 +2,7 @@ #include <stdlib/errno.h> -#ifdef _ERRNO_H +#if defined _ERRNO_H && !defined _ISOMAC # include <tls.h> /* Defines USE_TLS. */ |