* sysdeps/ieee754/ldbl-opt/nldbl-compat.h (NLDBL_DECL): Fix typo.
authorRoland McGrath <roland@gnu.org>
Sat, 14 Jan 2006 13:03:48 +0000 (13:03 +0000)
committerRoland McGrath <roland@gnu.org>
Sat, 14 Jan 2006 13:03:48 +0000 (13:03 +0000)
(NLDBL_HIDDEN): New macro.
(NLDBL_DECL): Use it in place of attribute_hidden.

ChangeLog
sysdeps/ieee754/ldbl-opt/nldbl-compat.h

index 700bac9..045e0f9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2006-01-14  Roland McGrath  <roland@redhat.com>
 
+       * sysdeps/ieee754/ldbl-opt/nldbl-compat.h (NLDBL_DECL): Fix typo.
+       (NLDBL_HIDDEN): New macro.
+       (NLDBL_DECL): Use it in place of attribute_hidden.
+
        * misc/efgcvt.c: Include <math_ldbl_opt.h> instead of <shlib-compat.h>.
        * misc/efgcvt_r.c: Likewise.
 
index 8d74d2f..80dad04 100644 (file)
 #include <monetary.h>
 #include <sys/syslog.h>
 
+#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 */