mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-27 03:41:23 +08:00
No need to use __THROW in this header.
This commit is contained in:
parent
f2b85a9f1d
commit
2ef4aac763
@ -104,36 +104,34 @@ extern int __libc_system (const char *line);
|
|||||||
|
|
||||||
extern double ____strtod_l_internal (__const char *__restrict __nptr,
|
extern double ____strtod_l_internal (__const char *__restrict __nptr,
|
||||||
char **__restrict __endptr, int __group,
|
char **__restrict __endptr, int __group,
|
||||||
__locale_t __loc) __THROW;
|
__locale_t __loc);
|
||||||
extern float ____strtof_l_internal (__const char *__restrict __nptr,
|
extern float ____strtof_l_internal (__const char *__restrict __nptr,
|
||||||
char **__restrict __endptr, int __group,
|
char **__restrict __endptr, int __group,
|
||||||
__locale_t __loc) __THROW;
|
__locale_t __loc);
|
||||||
extern long double ____strtold_l_internal (__const char *__restrict __nptr,
|
extern long double ____strtold_l_internal (__const char *__restrict __nptr,
|
||||||
char **__restrict __endptr,
|
char **__restrict __endptr,
|
||||||
int __group, __locale_t __loc)
|
int __group, __locale_t __loc);
|
||||||
__THROW;
|
|
||||||
extern long int ____strtol_l_internal (__const char *__restrict __nptr,
|
extern long int ____strtol_l_internal (__const char *__restrict __nptr,
|
||||||
char **__restrict __endptr,
|
char **__restrict __endptr,
|
||||||
int __base, int __group,
|
int __base, int __group,
|
||||||
__locale_t __loc) __THROW;
|
__locale_t __loc);
|
||||||
extern unsigned long int ____strtoul_l_internal (__const char *
|
extern unsigned long int ____strtoul_l_internal (__const char *
|
||||||
__restrict __nptr,
|
__restrict __nptr,
|
||||||
char **__restrict __endptr,
|
char **__restrict __endptr,
|
||||||
int __base, int __group,
|
int __base, int __group,
|
||||||
__locale_t __loc) __THROW;
|
__locale_t __loc);
|
||||||
__extension__
|
__extension__
|
||||||
extern long long int ____strtoll_l_internal (__const char *__restrict __nptr,
|
extern long long int ____strtoll_l_internal (__const char *__restrict __nptr,
|
||||||
char **__restrict __endptr,
|
char **__restrict __endptr,
|
||||||
int __base, int __group,
|
int __base, int __group,
|
||||||
__locale_t __loc) __THROW;
|
__locale_t __loc);
|
||||||
__extension__
|
__extension__
|
||||||
extern unsigned long long int ____strtoull_l_internal (__const char *
|
extern unsigned long long int ____strtoull_l_internal (__const char *
|
||||||
__restrict __nptr,
|
__restrict __nptr,
|
||||||
char **
|
char **
|
||||||
__restrict __endptr,
|
__restrict __endptr,
|
||||||
int __base, int __group,
|
int __base, int __group,
|
||||||
__locale_t __loc)
|
__locale_t __loc);
|
||||||
__THROW;
|
|
||||||
|
|
||||||
libc_hidden_proto (____strtof_l_internal)
|
libc_hidden_proto (____strtof_l_internal)
|
||||||
libc_hidden_proto (____strtod_l_internal)
|
libc_hidden_proto (____strtod_l_internal)
|
||||||
@ -145,43 +143,43 @@ libc_hidden_proto (____strtoull_l_internal)
|
|||||||
|
|
||||||
extern __inline double
|
extern __inline double
|
||||||
__strtod_l (__const char *__restrict __nptr, char **__restrict __endptr,
|
__strtod_l (__const char *__restrict __nptr, char **__restrict __endptr,
|
||||||
__locale_t __loc) __THROW
|
__locale_t __loc)
|
||||||
{
|
{
|
||||||
return ____strtod_l_internal (__nptr, __endptr, 0, __loc);
|
return ____strtod_l_internal (__nptr, __endptr, 0, __loc);
|
||||||
}
|
}
|
||||||
extern __inline long int
|
extern __inline long int
|
||||||
__strtol_l (__const char *__restrict __nptr, char **__restrict __endptr,
|
__strtol_l (__const char *__restrict __nptr, char **__restrict __endptr,
|
||||||
int __base, __locale_t __loc) __THROW
|
int __base, __locale_t __loc)
|
||||||
{
|
{
|
||||||
return ____strtol_l_internal (__nptr, __endptr, __base, 0, __loc);
|
return ____strtol_l_internal (__nptr, __endptr, __base, 0, __loc);
|
||||||
}
|
}
|
||||||
extern __inline unsigned long int
|
extern __inline unsigned long int
|
||||||
__strtoul_l (__const char *__restrict __nptr, char **__restrict __endptr,
|
__strtoul_l (__const char *__restrict __nptr, char **__restrict __endptr,
|
||||||
int __base, __locale_t __loc) __THROW
|
int __base, __locale_t __loc)
|
||||||
{
|
{
|
||||||
return ____strtoul_l_internal (__nptr, __endptr, __base, 0, __loc);
|
return ____strtoul_l_internal (__nptr, __endptr, __base, 0, __loc);
|
||||||
}
|
}
|
||||||
extern __inline float
|
extern __inline float
|
||||||
__strtof_l (__const char *__restrict __nptr, char **__restrict __endptr,
|
__strtof_l (__const char *__restrict __nptr, char **__restrict __endptr,
|
||||||
__locale_t __loc) __THROW
|
__locale_t __loc)
|
||||||
{
|
{
|
||||||
return ____strtof_l_internal (__nptr, __endptr, 0, __loc);
|
return ____strtof_l_internal (__nptr, __endptr, 0, __loc);
|
||||||
}
|
}
|
||||||
extern __inline long double
|
extern __inline long double
|
||||||
__strtold_l (__const char *__restrict __nptr, char **__restrict __endptr,
|
__strtold_l (__const char *__restrict __nptr, char **__restrict __endptr,
|
||||||
__locale_t __loc) __THROW
|
__locale_t __loc)
|
||||||
{
|
{
|
||||||
return ____strtold_l_internal (__nptr, __endptr, 0, __loc);
|
return ____strtold_l_internal (__nptr, __endptr, 0, __loc);
|
||||||
}
|
}
|
||||||
__extension__ extern __inline long long int
|
__extension__ extern __inline long long int
|
||||||
__strtoll_l (__const char *__restrict __nptr, char **__restrict __endptr,
|
__strtoll_l (__const char *__restrict __nptr, char **__restrict __endptr,
|
||||||
int __base, __locale_t __loc) __THROW
|
int __base, __locale_t __loc)
|
||||||
{
|
{
|
||||||
return ____strtoll_l_internal (__nptr, __endptr, __base, 0, __loc);
|
return ____strtoll_l_internal (__nptr, __endptr, __base, 0, __loc);
|
||||||
}
|
}
|
||||||
__extension__ extern __inline unsigned long long int
|
__extension__ extern __inline unsigned long long int
|
||||||
__strtoull_l (__const char * __restrict __nptr, char **__restrict __endptr,
|
__strtoull_l (__const char * __restrict __nptr, char **__restrict __endptr,
|
||||||
int __base, __locale_t __loc) __THROW
|
int __base, __locale_t __loc)
|
||||||
{
|
{
|
||||||
return ____strtoull_l_internal (__nptr, __endptr, __base, 0, __loc);
|
return ____strtoull_l_internal (__nptr, __endptr, __base, 0, __loc);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user