]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* wcsmbs/wchar.h (__wcstol_internal, __wcstoul_internal): Declare these
authorRoland McGrath <roland@gnu.org>
Thu, 16 Mar 2006 22:11:04 +0000 (22:11 +0000)
committerRoland McGrath <roland@gnu.org>
Thu, 16 Mar 2006 22:11:04 +0000 (22:11 +0000)
 only when we will use them, under [__OPTIMIZE__ && __GNUC__ >= 2].
(__wcstoll_internal, __wcstoull_internal_defined): Likewise.

ChangeLog
wcsmbs/wchar.h

index d997178d46b2ad060ab0fb05fd776a1b17b2d2c2..d4d12f172a0162e7dbf4f3132ceb884bfc6d6156 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-03-16  Roland McGrath  <roland@redhat.com>
+
+       * wcsmbs/wchar.h (__wcstol_internal, __wcstoul_internal): Declare these
+        only when we will use them, under [__OPTIMIZE__ && __GNUC__ >= 2].
+       (__wcstoll_internal, __wcstoull_internal_defined): Likewise.
+
 2006-03-06  Steven Munroe  <sjmunroe@us.ibm.com>
 
        * sysdeps/powerpc/powerpc32/fpu/fprsave.S: Add cfi_offset for spilling
index 670dc79c4ac946d446da8ef448e12696665c7a04..5e4c717904d13de0399920b1419a5f8d55846d3a 100644 (file)
@@ -507,26 +507,30 @@ extern long double __wcstold_internal (__const wchar_t *__restrict __nptr,
                                       wchar_t **__restrict __endptr,
                                       int __group) __THROW;
 
-#ifndef __wcstol_internal_defined
+#if !defined __wcstol_internal_defined \
+    && defined __OPTIMIZE__ && __GNUC__ >= 2
 extern long int __wcstol_internal (__const wchar_t *__restrict __nptr,
                                   wchar_t **__restrict __endptr,
                                   int __base, int __group) __THROW;
 # define __wcstol_internal_defined     1
 #endif
-#ifndef __wcstoul_internal_defined
+#if !defined __wcstoul_internal_defined \
+    && defined __OPTIMIZE__ && __GNUC__ >= 2
 extern unsigned long int __wcstoul_internal (__const wchar_t *__restrict __npt,
                                             wchar_t **__restrict __endptr,
                                             int __base, int __group) __THROW;
 # define __wcstoul_internal_defined    1
 #endif
-#ifndef __wcstoll_internal_defined
+#if !defined __wcstoll_internal_defined \
+    && defined __OPTIMIZE__ && __GNUC__ >= 2
 __extension__
 extern long long int __wcstoll_internal (__const wchar_t *__restrict __nptr,
                                         wchar_t **__restrict __endptr,
                                         int __base, int __group) __THROW;
 # define __wcstoll_internal_defined    1
 #endif
-#ifndef __wcstoull_internal_defined
+#if !defined __wcstoull_internal_defined \
+    && defined __OPTIMIZE__ && __GNUC__ >= 2
 __extension__
 extern unsigned long long int __wcstoull_internal (__const wchar_t *
                                                   __restrict __nptr,