diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/monetary.h | 2 | ||||
-rw-r--r-- | include/stdlib.h | 16 | ||||
-rw-r--r-- | include/time.h | 2 | ||||
-rw-r--r-- | include/wchar.h | 4 |
4 files changed, 12 insertions, 12 deletions
diff --git a/include/monetary.h b/include/monetary.h index e687013..2a18263 100644 --- a/include/monetary.h +++ b/include/monetary.h @@ -2,6 +2,6 @@ #ifndef _ISOMAC #include <stdarg.h> -extern ssize_t __vstrfmon_l (char *s, size_t maxsize, __locale_t loc, +extern ssize_t __vstrfmon_l (char *s, size_t maxsize, locale_t loc, const char *format, va_list ap); #endif diff --git a/include/stdlib.h b/include/stdlib.h index cae9f2c..6fd8688 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -156,34 +156,34 @@ libc_hidden_proto (__strtoull_internal) extern double ____strtod_l_internal (const char *__restrict __nptr, char **__restrict __endptr, int __group, - __locale_t __loc); + locale_t __loc); extern float ____strtof_l_internal (const char *__restrict __nptr, char **__restrict __endptr, int __group, - __locale_t __loc); + locale_t __loc); extern long double ____strtold_l_internal (const char *__restrict __nptr, char **__restrict __endptr, - int __group, __locale_t __loc); + int __group, locale_t __loc); extern long int ____strtol_l_internal (const char *__restrict __nptr, char **__restrict __endptr, int __base, int __group, - __locale_t __loc); + locale_t __loc); extern unsigned long int ____strtoul_l_internal (const char * __restrict __nptr, char **__restrict __endptr, int __base, int __group, - __locale_t __loc); + locale_t __loc); __extension__ extern long long int ____strtoll_l_internal (const char *__restrict __nptr, char **__restrict __endptr, int __base, int __group, - __locale_t __loc); + locale_t __loc); __extension__ extern unsigned long long int ____strtoull_l_internal (const char * __restrict __nptr, char ** __restrict __endptr, int __base, int __group, - __locale_t __loc); + locale_t __loc); libc_hidden_proto (____strtof_l_internal) libc_hidden_proto (____strtod_l_internal) @@ -243,7 +243,7 @@ libc_hidden_proto (__strtof128_internal) extern _Float128 ____strtof128_l_internal (const char *__restrict __nptr, char **__restrict __endptr, - int __group, __locale_t __loc); + int __group, locale_t __loc); libc_hidden_proto (____strtof128_l_internal) #endif diff --git a/include/time.h b/include/time.h index 0a67cf3..7eb0fa7 100644 --- a/include/time.h +++ b/include/time.h @@ -92,7 +92,7 @@ extern int __getclktck (void); /* strptime support. */ extern char * __strptime_internal (const char *rp, const char *fmt, struct tm *tm, void *statep, - __locale_t locparam) + locale_t locparam) internal_function; extern double __difftime (time_t time1, time_t time0); diff --git a/include/wchar.h b/include/wchar.h index b7b5a5c..7bf042c 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -54,7 +54,7 @@ extern unsigned long long int __wcstoull_internal (const wchar_t * int __group) __THROW; extern unsigned long long int ____wcstoull_l_internal (const wchar_t *, wchar_t **, int, int, - __locale_t); + locale_t); libc_hidden_proto (__wcstof_internal) libc_hidden_proto (__wcstod_internal) libc_hidden_proto (__wcstold_internal) @@ -221,7 +221,7 @@ libc_hidden_proto (__isoc99_vfwscanf) /* Internal functions. */ extern size_t __mbsrtowcs_l (wchar_t *dst, const char **src, size_t len, - mbstate_t *ps, __locale_t l) attribute_hidden; + mbstate_t *ps, locale_t l) attribute_hidden; /* Special version. We know that all uses of mbsinit inside the libc have a non-NULL parameter. And certainly we can access the |