mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 20:40:05 +00:00
* 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.
This commit is contained in:
parent
3e7e947f6b
commit
27c0e0d863
@ -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
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user