diff options
author | Roland McGrath <roland@gnu.org> | 2003-01-17 21:37:00 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-01-17 21:37:00 +0000 |
commit | cd5c85fecba4bc0a66bec78e0f84189c67db958f (patch) | |
tree | 1ded79e0076c6f1d617c52957d79cc909ceeaf8f | |
parent | 0f0b799489b3b4df2c69c9a6844be6a8f294778d (diff) | |
download | glibc-cd5c85fecba4bc0a66bec78e0f84189c67db958f.tar glibc-cd5c85fecba4bc0a66bec78e0f84189c67db958f.tar.gz glibc-cd5c85fecba4bc0a66bec78e0f84189c67db958f.tar.bz2 glibc-cd5c85fecba4bc0a66bec78e0f84189c67db958f.zip |
2003-01-17 Roland McGrath <roland@redhat.com>
* elf/dl-open.c: Fix typo ifdef -> ifndef on _dl_tls_static_size defn.
-rw-r--r-- | elf/dl-open.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/dl-open.c b/elf/dl-open.c index 65102fabce..8e0c3c2929 100644 --- a/elf/dl-open.c +++ b/elf/dl-open.c @@ -1,5 +1,5 @@ /* Load a shared object at runtime, relocate it, and run its initializer. - Copyright (C) 1996-2001, 2002 Free Software Foundation, Inc. + Copyright (C) 1996-2001, 2002, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -34,7 +34,7 @@ #include <dl-dst.h> -#ifdef SHARED +#ifndef SHARED /* Giving this initialized value preallocates some surplus bytes in the static TLS area, see __libc_setup_tls (libc-tls.c). */ size_t _dl_tls_static_size = 576; |