diff options
author | Roland McGrath <roland@gnu.org> | 2002-08-04 01:29:29 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-08-04 01:29:29 +0000 |
commit | 509d1b68421a9dc02605540615d241b48bf90a13 (patch) | |
tree | 8fcc9eb3ea1bccd85b065ff79ad57c7eb3e589bb /sysdeps | |
parent | b38de2c8da34cf506651a5170a3d2d46292650ad (diff) | |
download | glibc-509d1b68421a9dc02605540615d241b48bf90a13.tar glibc-509d1b68421a9dc02605540615d241b48bf90a13.tar.gz glibc-509d1b68421a9dc02605540615d241b48bf90a13.tar.bz2 glibc-509d1b68421a9dc02605540615d241b48bf90a13.zip |
* include/search.h: Use libc_hidden_proto for hsearch_r, lfind.
* misc/hsearch_r.c: Add libc_hidden_def.
* misc/lsearch.c: Likewise.
* include/ttyent.h: Use libc_hidden_proto for getttyent, setttyent,
endttyent.
* misc/getttyent.c: Add libc_hidden_def.
* include/mcheck.h: Use libc_hidden_proto for mcheck.
* malloc/mcheck.c: Add libc_hidden_def.
* include/envz.h: Use libc_hidden_proto for envz_entry, enz_remove.
* include/argz.h: Use libc_hidden_proto for argz_delete.
* string/argz-delete.c: Add libc_hidden_def.
* string/envz.c: Likewise. Use <envz.h>, not "envz.h".
* sysdeps/unix/sysv/linux/x86_64/clone.S (thread_start): Use
HIDDEN_JUMPTARGET for _exit.
* sysdeps/unix/sysv/linux/m68k/clone.S (thread_start): Likewise.
* sysdeps/unix/sysv/linux/i386/clone.S (thread_start): Likewise.
* sysdeps/unix/sysv/linux/powerpc/clone.S: Likewise.
* sysdeps/unix/_exit.S (_exit): Add libc_hidden_def.
* include/libc-symbols.h: Fix [__ASSEMBLY__] -> [__ASSEMBLER__].
[__ASSEMBLER__] (hidden_weak): Define using hidden_def, or to empty.
[__ASSEMBLER__] (HIDDEN_JUMPTARGET): New macro.
* sysdeps/unix/sysv/linux/i386/makecontext.S: Use it for exit.
* include/stdlib.h: Use libc_hidden_proto for abort,
__strtof_internal, __strtod_internal, __strtold_internal,
__strtol_internal, __strtoll_internal, __strtoul_internal,
__strtoull_internal. __strtof_l_internal, __strtod_l_internal,
__strtold_l_internal, __strtol_l_internal, __strtoll_l_internal,
__strtoul_l_internal, __strtoull_l_internal.
* include/wchar.h: Use libc_hidden_proto for __wcstof_internal,
__wcstod_internal, __wcstold_internal, __wcstol_internal,
__wcstoll_internal, __wcstoul_internal, ____wcstof_l_internal,
____wcstod_l_internal, ____wcstold_l_internal, ____wcstol_l_internal,
____wcstoll_l_internal, ____wcstoul_l_internal, __wcscasecmp_l,
__wcsncasecmp_l.
* sysdeps/generic/abort.c: Add libc_hidden_def.
* stdlib/strtod.c: Likewise.
* sysdeps/generic/strtol.c: Likewise.
* sysdeps/wordsize-64/strtol.c: Likewise.
* sysdeps/wordsize-64/wcstol.c: Likewise.
* sysdeps/wordsize-64/wcstol_l.c: Likewise.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/generic/abort.c | 3 | ||||
-rw-r--r-- | sysdeps/generic/strtol.c | 7 | ||||
-rw-r--r-- | sysdeps/wordsize-64/strtol.c | 1 | ||||
-rw-r--r-- | sysdeps/wordsize-64/wcstol.c | 3 |
4 files changed, 12 insertions, 2 deletions
diff --git a/sysdeps/generic/abort.c b/sysdeps/generic/abort.c index 0f638ddc0c..00788f22c7 100644 --- a/sysdeps/generic/abort.c +++ b/sysdeps/generic/abort.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 93, 95, 96, 97, 98, 2001 Free Software Foundation, Inc. +/* Copyright (C) 1991,93,95,96,97,98,2001,02 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 @@ -137,3 +137,4 @@ abort (void) /* Try for ever and ever. */ ABORT_INSTRUCTION; } +libc_hidden_def (abort) diff --git a/sysdeps/generic/strtol.c b/sysdeps/generic/strtol.c index d2e09c8404..7e174d488b 100644 --- a/sysdeps/generic/strtol.c +++ b/sysdeps/generic/strtol.c @@ -1,5 +1,6 @@ /* Convert string representation of a number into an integer value. - Copyright (C) 1991,92,94,95,96,97,98,99,2000,2001 Free Software Foundation, Inc. + Copyright (C) 1991,92,94,95,96,97,98,99,2000,01,02 + 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 @@ -532,6 +533,10 @@ noconv: return 0L; } +#if defined _LIBC \ + && !(defined USE_IN_EXTENDED_LOCALE_MODEL && defined USE_WIDE_CHAR) +libc_hidden_def (INTERNAL (strtol)) +#endif /* External user entry point. */ diff --git a/sysdeps/wordsize-64/strtol.c b/sysdeps/wordsize-64/strtol.c index 4ffbca6bdc..e6370150a4 100644 --- a/sysdeps/wordsize-64/strtol.c +++ b/sysdeps/wordsize-64/strtol.c @@ -9,5 +9,6 @@ #undef strtoll #undef strtoq strong_alias (__strtol_internal, __strtoll_internal) +libc_hidden_def (__strtoll_internal) weak_alias (strtol, strtoll) weak_alias (strtol, strtoq) diff --git a/sysdeps/wordsize-64/wcstol.c b/sysdeps/wordsize-64/wcstol.c index fcfbcf36fa..0aaa5f6ca9 100644 --- a/sysdeps/wordsize-64/wcstol.c +++ b/sysdeps/wordsize-64/wcstol.c @@ -9,5 +9,8 @@ #undef wcstoll #undef wcstoq strong_alias (__wcstol_internal, __wcstoll_internal) +libc_hidden_def (__wcstoll_internal) weak_alias (wcstol, wcstoll) +libc_hidden_weak (wcstoll) weak_alias (wcstol, wcstoq) +libc_hidden_weak (wcstoq) |