From 5c9c64088923397e9524c8ef4545ca0dd66a8d5e Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sat, 14 Jan 2006 13:03:48 +0000 Subject: * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (NLDBL_DECL): Fix typo. (NLDBL_HIDDEN): New macro. (NLDBL_DECL): Use it in place of attribute_hidden. --- sysdeps/ieee754/ldbl-opt/nldbl-compat.h | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) (limited to 'sysdeps/ieee754') diff --git a/sysdeps/ieee754/ldbl-opt/nldbl-compat.h b/sysdeps/ieee754/ldbl-opt/nldbl-compat.h index 8d74d2f391..80dad04e11 100644 --- a/sysdeps/ieee754/ldbl-opt/nldbl-compat.h +++ b/sysdeps/ieee754/ldbl-opt/nldbl-compat.h @@ -32,8 +32,13 @@ #include #include +#ifdef SHARED +# define NLDBL_HIDDEN +#else +# define NLDBL_HIDDEN attribute_hidden +#endif #define NLDBL_DECL(name) \ - extern __typeof (#name) __nldbl_##name attribute_hidden + extern __typeof (name) __nldbl_##name NLDBL_HIDDEN NLDBL_DECL (_IO_vfscanf); NLDBL_DECL (vfscanf); @@ -61,26 +66,26 @@ NLDBL_DECL (qfcvt); NLDBL_DECL (qgcvt); extern int __nldbl___vfprintf_chk (FILE *__restrict, int, const char *__restrict, _G_va_list) - attribute_hidden; + NLDBL_HIDDEN; extern int __nldbl___vfwprintf_chk (FILE *__restrict, int, const wchar_t *__restrict, __gnuc_va_list) - attribute_hidden; + NLDBL_HIDDEN; extern int __nldbl___vsprintf_chk (char *__restrict, int, size_t, const char *__restrict, _G_va_list) __THROW - attribute_hidden; + NLDBL_HIDDEN; extern int __nldbl___vsnprintf_chk (char *__restrict, size_t, int, size_t, const char *__restrict, _G_va_list) - __THROW attribute_hidden; + __THROW NLDBL_HIDDEN; extern int __nldbl___vswprintf_chk (wchar_t *__restrict, size_t, int, size_t, const wchar_t *__restrict, __gnuc_va_list) - __THROW attribute_hidden; + __THROW NLDBL_HIDDEN; extern void __nldbl___vsyslog_chk (int, int, const char *, va_list) - attribute_hidden; + NLDBL_HIDDEN; extern ssize_t __nldbl___vstrfmon (char *, size_t, const char *, va_list) - __THROW attribute_hidden; + __THROW NLDBL_HIDDEN; extern ssize_t __nldbl___vstrfmon_l (char *, size_t, __locale_t, const char *, va_list) - __THROW attribute_hidden; + __THROW NLDBL_HIDDEN; #endif /* __NLDBL_COMPAT_H */ -- cgit 1.4.1