diff options
author | 2002-09-28 19:22:26 +0000 | |
---|---|---|
committer | 2002-09-28 19:22:26 +0000 | |
commit | c7f093195b51bc0b9727a5c972d16e50cc28179a (patch) | |
tree | 59a3b29424ef860786dd13a5fc27accbac1c5fdb | |
parent | (nice): Use getpriority() for the return value. (diff) | |
download | glibc-c7f093195b51bc0b9727a5c972d16e50cc28179a.tar.xz glibc-c7f093195b51bc0b9727a5c972d16e50cc28179a.zip |
2002-09-27 Steven Munroe <sjmunroe@us.ibm.com>
* include/libc-symbols.h (__hidden_dot_weak1): Fix typo. Replace
ASM_GLOBAL_DIRECTIVE with .weak.
-rw-r--r-- | include/libc-symbols.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libc-symbols.h b/include/libc-symbols.h index 05cdb968ce..6281d700f1 100644 --- a/include/libc-symbols.h +++ b/include/libc-symbols.h @@ -615,7 +615,7 @@ C_SYMBOL_NAME (alias) = C_SYMBOL_NAME (original) # ifdef HAVE_ASM_GLOBAL_DOT_NAME # define __hidden_dot_weak1(original, alias) ASM_LINE_SEP \ - ASM_GLOBAL_DIRECTIVE C_SYMBOL_DOT_NAME (alias) ASM_LINE_SEP \ + .weak C_SYMBOL_DOT_NAME (alias) ASM_LINE_SEP \ C_SYMBOL_DOT_NAME (alias) = C_SYMBOL_DOT_NAME (original) # else # define __hidden_dot_weak1(original, alias) |