diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-02-09 01:29:45 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-02-09 01:29:45 +0000 |
commit | 013aafb7d098153e8df3a133ce6302c20396a33f (patch) | |
tree | 3ad6f40914be5e8c7ad1d8190d7c8ffccce29265 /csu/version.c | |
parent | 0f0d61adf5559947c132cffe2067c06a009edb5e (diff) | |
download | glibc-013aafb7d098153e8df3a133ce6302c20396a33f.zip glibc-013aafb7d098153e8df3a133ce6302c20396a33f.tar.gz glibc-013aafb7d098153e8df3a133ce6302c20396a33f.tar.bz2 |
(banner): If TLS support available say so.
Diffstat (limited to 'csu/version.c')
-rw-r--r-- | csu/version.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/csu/version.c b/csu/version.c index 7b4f512..027f8c9 100644 --- a/csu/version.c +++ b/csu/version.c @@ -17,6 +17,7 @@ 02111-1307 USA. */ #include "version.h" +#include <tls.h> #include <gnu/libc-version.h> static const char __libc_release[] = RELEASE; @@ -33,6 +34,9 @@ Compiled by GNU CC version "__VERSION__".\n" #ifdef GLIBC_OLDEST_ABI "The oldest ABI supported: " GLIBC_OLDEST_ABI ".\n" #endif +#ifdef USE_TLS +"Thread-local storage support included.\n" +#endif "Report bugs using the `glibcbug' script to <bugs@gnu.org>.\n"; #include <unistd.h> |