]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Use locale_t, not __locale_t, throughout glibc
authorZack Weinberg <zackw@panix.com>
Tue, 20 Jun 2017 13:26:43 +0000 (09:26 -0400)
committerZack Weinberg <zackw@panix.com>
Wed, 21 Jun 2017 00:30:06 +0000 (20:30 -0400)
<locale.h> is specified to define locale_t in POSIX.1-2008, and so are
all of the headers that define functions that take locale_t arguments.
Under _GNU_SOURCE, the additional headers that define such functions
have also always defined locale_t.  Therefore, there is no need to use
__locale_t in public function prototypes, nor in any internal code.

* ctype/ctype-c99_l.c, ctype/ctype.h, ctype/ctype_l.c
* include/monetary.h, include/stdlib.h, include/time.h
* include/wchar.h, locale/duplocale.c, locale/freelocale.c
* locale/global-locale.c, locale/langinfo.h, locale/locale.h
* locale/localeinfo.h, locale/newlocale.c
* locale/nl_langinfo_l.c, locale/uselocale.c
* localedata/bug-usesetlocale.c, localedata/tst-xlocale2.c
* stdio-common/vfscanf.c, stdlib/monetary.h, stdlib/stdlib.h
* stdlib/strfmon_l.c, stdlib/strtod_l.c, stdlib/strtof_l.c
* stdlib/strtol.c, stdlib/strtol_l.c, stdlib/strtold_l.c
* stdlib/strtoll_l.c, stdlib/strtoul_l.c, stdlib/strtoull_l.c
* string/strcasecmp.c, string/strcoll_l.c, string/string.h
* string/strings.h, string/strncase.c, string/strxfrm_l.c
* sysdeps/ieee754/float128/strtof128_l.c
* sysdeps/ieee754/float128/wcstof128.c
* sysdeps/ieee754/float128/wcstof128_l.c
* sysdeps/ieee754/ldbl-128ibm/strtold_l.c
* sysdeps/ieee754/ldbl-64-128/strtold_l.c
* sysdeps/ieee754/ldbl-opt/nldbl-compat.c
* sysdeps/ieee754/ldbl-opt/nldbl-strfmon_l.c
* sysdeps/ieee754/ldbl-opt/nldbl-strtold_l.c
* sysdeps/ieee754/ldbl-opt/nldbl-wcstold_l.c
* sysdeps/powerpc/powerpc32/power7/strcasecmp.S
* sysdeps/powerpc/powerpc64/power7/strcasecmp.S
* sysdeps/x86_64/strcasecmp_l-nonascii.c
* sysdeps/x86_64/strncase_l-nonascii.c, time/strftime_l.c
* time/strptime_l.c, time/time.h, wcsmbs/mbsrtowcs_l.c
* wcsmbs/wchar.h, wcsmbs/wcscasecmp.c, wcsmbs/wcsncase.c
* wcsmbs/wcstod.c, wcsmbs/wcstod_l.c, wcsmbs/wcstof.c
* wcsmbs/wcstof_l.c, wcsmbs/wcstol_l.c, wcsmbs/wcstold.c
* wcsmbs/wcstold_l.c, wcsmbs/wcstoll_l.c, wcsmbs/wcstoul_l.c
* wcsmbs/wcstoull_l.c, wctype/iswctype_l.c
* wctype/towctrans_l.c, wctype/wcfuncs_l.c
* wctype/wctrans_l.c, wctype/wctype.h, wctype/wctype_l.c:
Change all uses of __locale_t to locale_t.

73 files changed:
ChangeLog
ctype/ctype-c99_l.c
ctype/ctype.h
ctype/ctype_l.c
include/monetary.h
include/stdlib.h
include/time.h
include/wchar.h
locale/duplocale.c
locale/freelocale.c
locale/global-locale.c
locale/langinfo.h
locale/locale.h
locale/localeinfo.h
locale/newlocale.c
locale/nl_langinfo_l.c
locale/uselocale.c
localedata/bug-usesetlocale.c
localedata/tst-xlocale2.c
stdio-common/vfscanf.c
stdlib/monetary.h
stdlib/stdlib.h
stdlib/strfmon_l.c
stdlib/strtod_l.c
stdlib/strtof_l.c
stdlib/strtol.c
stdlib/strtol_l.c
stdlib/strtold_l.c
stdlib/strtoll_l.c
stdlib/strtoul_l.c
stdlib/strtoull_l.c
string/strcasecmp.c
string/strcoll_l.c
string/string.h
string/strings.h
string/strncase.c
string/strxfrm_l.c
sysdeps/ieee754/float128/strtof128_l.c
sysdeps/ieee754/float128/wcstof128.c
sysdeps/ieee754/float128/wcstof128_l.c
sysdeps/ieee754/ldbl-128ibm/strtold_l.c
sysdeps/ieee754/ldbl-64-128/strtold_l.c
sysdeps/ieee754/ldbl-opt/nldbl-compat.c
sysdeps/ieee754/ldbl-opt/nldbl-strfmon_l.c
sysdeps/ieee754/ldbl-opt/nldbl-strtold_l.c
sysdeps/ieee754/ldbl-opt/nldbl-wcstold_l.c
sysdeps/powerpc/powerpc32/power7/strcasecmp.S
sysdeps/powerpc/powerpc64/power7/strcasecmp.S
sysdeps/x86_64/strcasecmp_l-nonascii.c
sysdeps/x86_64/strncase_l-nonascii.c
time/strftime_l.c
time/strptime_l.c
time/time.h
wcsmbs/mbsrtowcs_l.c
wcsmbs/wchar.h
wcsmbs/wcscasecmp.c
wcsmbs/wcsncase.c
wcsmbs/wcstod.c
wcsmbs/wcstod_l.c
wcsmbs/wcstof.c
wcsmbs/wcstof_l.c
wcsmbs/wcstol_l.c
wcsmbs/wcstold.c
wcsmbs/wcstold_l.c
wcsmbs/wcstoll_l.c
wcsmbs/wcstoul_l.c
wcsmbs/wcstoull_l.c
wctype/iswctype_l.c
wctype/towctrans_l.c
wctype/wcfuncs_l.c
wctype/wctrans_l.c
wctype/wctype.h
wctype/wctype_l.c

index c7877ef1bf05159b5abda13b900b38cd8cf1a09b..efc7c7add2a0fe94c24265c404204d6156eeaaea 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,31 +1,67 @@
 2017-06-20  Zack Weinberg  <zackw@panix.com>
 
-        * locale/xlocale.h: Rename to...
+       * locale/xlocale.h: Rename to...
        * locale/bits/types/__locale_t.h: ...here.  Adjust commentary.
        Only define struct __locale_struct and __locale_t, not locale_t.
-        * locale/bits/types/locale_t.h: New file; define locale_t here.
-        * locale/Makefile (headers): Update to match.
-
-        * include/xlocale.h: Delete wrapper.
-        * include/bits/types/__locale_t.h: New wrapper.
-        * include/bits/types/locale_t.h: New wrapper.
-
-        * ctype/ctype.h, include/printf.h, include/time.h
-        * locale/langinfo.h, locale/locale.h, stdlib/monetary.h
-        * stdlib/stdlib.h, string/string.h, string/strings.h, time/time.h
-        * wcsmbs/wchar.h, wctype/wctype.h: Use bits/types/locale_t.h.
-        Correct outdated comments regarding the standardization status of
-        the functions that take locale_t arguments.
-
-        * stdlib/strtod_l.c, stdlib/strtof_l.c, stdlib/strtol_l.c
-        * stdlib/strtold_l.c, stdlib/strtoul_l.c, stdlib/strtoull_l.c
-        * sysdeps/ieee754/ldbl-128ibm/strtold_l.c
-        * sysdeps/ieee754/ldbl-64-128/strtold_l.c
-        * wcsmbs/wcstod.c, wcsmbs/wcstod_l.c, wcsmbs/wcstof.c
-        * wcsmbs/wcstof_l.c, wcsmbs/wcstold.c, wcsmbs/wcstold_l.c:
-        Don't include xlocale.h. If necessary, include locale.h instead.
-
-        * stdlib/strtold_l.c: Unconditionally include wchar.h.
+       * locale/bits/types/locale_t.h: New file; define locale_t here.
+       * locale/Makefile (headers): Update to match.
+
+       * include/xlocale.h: Delete wrapper.
+       * include/bits/types/__locale_t.h: New wrapper.
+       * include/bits/types/locale_t.h: New wrapper.
+
+       * ctype/ctype.h, include/printf.h, include/time.h
+       * locale/langinfo.h, locale/locale.h, stdlib/monetary.h
+       * stdlib/stdlib.h, string/string.h, string/strings.h, time/time.h
+       * wcsmbs/wchar.h, wctype/wctype.h: Use bits/types/locale_t.h.
+       Correct outdated comments regarding the standardization status of
+       the functions that take locale_t arguments.
+
+       * stdlib/strtod_l.c, stdlib/strtof_l.c, stdlib/strtol_l.c
+       * stdlib/strtold_l.c, stdlib/strtoul_l.c, stdlib/strtoull_l.c
+       * sysdeps/ieee754/ldbl-128ibm/strtold_l.c
+       * sysdeps/ieee754/ldbl-64-128/strtold_l.c
+       * wcsmbs/wcstod.c, wcsmbs/wcstod_l.c, wcsmbs/wcstof.c
+       * wcsmbs/wcstof_l.c, wcsmbs/wcstold.c, wcsmbs/wcstold_l.c:
+       Don't include xlocale.h. If necessary, include locale.h instead.
+
+       * stdlib/strtold_l.c: Unconditionally include wchar.h.
+
+       * ctype/ctype-c99_l.c, ctype/ctype.h, ctype/ctype_l.c
+       * include/monetary.h, include/stdlib.h, include/time.h
+       * include/wchar.h, locale/duplocale.c, locale/freelocale.c
+       * locale/global-locale.c, locale/langinfo.h, locale/locale.h
+       * locale/localeinfo.h, locale/newlocale.c
+       * locale/nl_langinfo_l.c, locale/uselocale.c
+       * localedata/bug-usesetlocale.c, localedata/tst-xlocale2.c
+       * stdio-common/vfscanf.c, stdlib/monetary.h, stdlib/stdlib.h
+       * stdlib/strfmon_l.c, stdlib/strtod_l.c, stdlib/strtof_l.c
+       * stdlib/strtol.c, stdlib/strtol_l.c, stdlib/strtold_l.c
+       * stdlib/strtoll_l.c, stdlib/strtoul_l.c, stdlib/strtoull_l.c
+       * string/strcasecmp.c, string/strcoll_l.c, string/string.h
+       * string/strings.h, string/strncase.c, string/strxfrm_l.c
+       * sysdeps/ieee754/float128/strtof128_l.c
+       * sysdeps/ieee754/float128/wcstof128.c
+       * sysdeps/ieee754/float128/wcstof128_l.c
+       * sysdeps/ieee754/ldbl-128ibm/strtold_l.c
+       * sysdeps/ieee754/ldbl-64-128/strtold_l.c
+       * sysdeps/ieee754/ldbl-opt/nldbl-compat.c
+       * sysdeps/ieee754/ldbl-opt/nldbl-strfmon_l.c
+       * sysdeps/ieee754/ldbl-opt/nldbl-strtold_l.c
+       * sysdeps/ieee754/ldbl-opt/nldbl-wcstold_l.c
+       * sysdeps/powerpc/powerpc32/power7/strcasecmp.S
+       * sysdeps/powerpc/powerpc64/power7/strcasecmp.S
+       * sysdeps/x86_64/strcasecmp_l-nonascii.c
+       * sysdeps/x86_64/strncase_l-nonascii.c, time/strftime_l.c
+       * time/strptime_l.c, time/time.h, wcsmbs/mbsrtowcs_l.c
+       * wcsmbs/wchar.h, wcsmbs/wcscasecmp.c, wcsmbs/wcsncase.c
+       * wcsmbs/wcstod.c, wcsmbs/wcstod_l.c, wcsmbs/wcstof.c
+       * wcsmbs/wcstof_l.c, wcsmbs/wcstol_l.c, wcsmbs/wcstold.c
+       * wcsmbs/wcstold_l.c, wcsmbs/wcstoll_l.c, wcsmbs/wcstoul_l.c
+       * wcsmbs/wcstoull_l.c, wctype/iswctype_l.c
+       * wctype/towctrans_l.c, wctype/wcfuncs_l.c
+       * wctype/wctrans_l.c, wctype/wctype.h, wctype/wctype_l.c:
+       Change all uses of __locale_t to locale_t.
 
 2017-06-20  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
index efb5a67bb57aa294c86a634633c37ccf3cc2cafe..da543593f9e23cab054bf376441614064b709c9a 100644 (file)
@@ -20,7 +20,7 @@
 #include <ctype.h>
 
 int
-__isblank_l (int c, __locale_t l)
+__isblank_l (int c, locale_t l)
 {
   return __isctype_l (c, _ISblank, l);
 }
index ce598d53e50929876c5d0409e8183b78d0ab90c6..1fcbb660d6fe02958abc4dd79e969752d0d68669 100644 (file)
@@ -242,7 +242,7 @@ __NTH (toupper (int __c))
   ((locale)->__ctype_b[(int) (c)] & (unsigned short int) type)
 
 # define __exctype_l(name)                                                   \
-  extern int name (int, __locale_t) __THROW
+  extern int name (int, locale_t) __THROW
 
 /* The following names are all functions:
      int isCHARACTERISTIC(int c, locale_t *locale);
@@ -264,12 +264,12 @@ __exctype_l (isblank_l);
 
 
 /* Return the lowercase version of C in locale L.  */
-extern int __tolower_l (int __c, __locale_t __l) __THROW;
-extern int tolower_l (int __c, __locale_t __l) __THROW;
+extern int __tolower_l (int __c, locale_t __l) __THROW;
+extern int tolower_l (int __c, locale_t __l) __THROW;
 
 /* Return the uppercase version of C.  */
-extern int __toupper_l (int __c, __locale_t __l) __THROW;
-extern int toupper_l (int __c, __locale_t __l) __THROW;
+extern int __toupper_l (int __c, locale_t __l) __THROW;
+extern int toupper_l (int __c, locale_t __l) __THROW;
 
 # if __GNUC__ >= 2 && defined __OPTIMIZE__ && !defined __cplusplus
 #  define __tolower_l(c, locale) \
index a7b5f5238a2625647a6465e43c44c2ce0ec18310..e565068c2061f03ad81dfbe6e2e1a62765116cf4 100644 (file)
@@ -21,7 +21,7 @@
 /* Provide real-function versions of all the ctype macros.  */
 
 #define        func(name, type) \
-  int __##name (int c, __locale_t l) { return __isctype_l (c, type, l); } \
+  int __##name (int c, locale_t l) { return __isctype_l (c, type, l); } \
   weak_alias (__##name, name)
 
 func (isalnum_l, _ISalnum)
@@ -37,14 +37,14 @@ func (isupper_l, _ISupper)
 func (isxdigit_l, _ISxdigit)
 
 int
-(__tolower_l) (int c, __locale_t l)
+(__tolower_l) (int c, locale_t l)
 {
   return l->__ctype_tolower[c];
 }
 weak_alias (__tolower_l, tolower_l)
 
 int
-(__toupper_l) (int c, __locale_t l)
+(__toupper_l) (int c, locale_t l)
 {
   return l->__ctype_toupper[c];
 }
index e6870138f85d53c6478be86f1c4d26a4d92a5aff..2a182636d221b0f8d878dfc553c6c8f1899b9c34 100644 (file)
@@ -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
index cae9f2c541a52bbc7cf4c9cf1ec8822dcaac20a3..6fd868828b0876b30c6c6520a1abaf62cc48bee7 100644 (file)
@@ -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
index 0a67cf3a199376c6cb2c1357a1438f9f74e71e1c..7eb0fa72d99fb96b0dff02854e60db507591ad54 100644 (file)
@@ -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);
index b7b5a5c43d1610449ee37ae1ef7ebe3937198d86..7bf042c23512453841304e756291984ca2423b7f 100644 (file)
@@ -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
index 07c2c5864662d4dda7fc14871c46ae9652577f16..4bf1d563997baf007daceddbed4216ae41f16b69 100644 (file)
@@ -29,8 +29,8 @@
 __libc_rwlock_define (extern , __libc_setlocale_lock attribute_hidden)
 
 
-__locale_t
-__duplocale (__locale_t dataset)
+locale_t
+__duplocale (locale_t dataset)
 {
   /* This static object is returned for newlocale (LC_ALL_MASK, "C").  */
   if (dataset == _nl_C_locobj_ptr)
@@ -40,7 +40,7 @@ __duplocale (__locale_t dataset)
   if (dataset == LC_GLOBAL_LOCALE)
     dataset = &_nl_global_locale;
 
-  __locale_t result;
+  locale_t result;
   int cnt;
   size_t names_len = 0;
 
index 393fab5ea658d3bf42ef315661b1f33785068e13..e3263967ebce8e4ce9798a546b6294214bac6861 100644 (file)
@@ -29,7 +29,7 @@ __libc_rwlock_define (extern , __libc_setlocale_lock attribute_hidden)
 
 
 void
-__freelocale (__locale_t dataset)
+__freelocale (locale_t dataset)
 {
   int cnt;
 
index 3629c7220763e6f55b80641833ab9074dd7b1cc6..cf5f8cf8d8fe67cfaa3014bfffe7af8712e0c779 100644 (file)
@@ -61,4 +61,4 @@ struct __locale_struct _nl_global_locale attribute_hidden =
 #include <tls.h>
 
 /* The tsd macros don't permit an initializer.  */
-__thread __locale_t __libc_tsd_LOCALE = &_nl_global_locale;
+__thread locale_t __libc_tsd_LOCALE = &_nl_global_locale;
index 93d84463b53d33db8675a482ef104f6c6534c370..14039576bc1f1ece7b50995d7314382c09a8cba4 100644 (file)
@@ -588,7 +588,7 @@ extern char *nl_langinfo (nl_item __item) __THROW;
 # include <bits/types/locale_t.h>
 
 /* Just like nl_langinfo but get the information from the locale object L.  */
-extern char *nl_langinfo_l (nl_item __item, __locale_t __l);
+extern char *nl_langinfo_l (nl_item __item, locale_t __l);
 #endif
 
 __END_DECLS
index 6c1b22051bd4631c00b59f4801ef1713e013d523..ba025f67ba7670f49b33fafef6aa72b8a8cf4d2d 100644 (file)
@@ -138,8 +138,8 @@ extern struct lconv *localeconv (void) __THROW;
    datasets.  Unlike for the CATEGORY parameter for `setlocale' the
    CATEGORY_MASK parameter here uses a single bit for each category,
    made by OR'ing together LC_*_MASK bits above.  */
-extern __locale_t newlocale (int __category_mask, const char *__locale,
-                            __locale_t __base) __THROW;
+extern locale_t newlocale (int __category_mask, const char *__locale,
+                          locale_t __base) __THROW;
 
 /* These are the bits that can be set in the CATEGORY_MASK argument to
    `newlocale'.  In the GNU implementation, LC_FOO_MASK has the value
@@ -173,22 +173,22 @@ extern __locale_t newlocale (int __category_mask, const char *__locale,
 
 /* Return a duplicate of the set of locale in DATASET.  All usage
    counters are increased if necessary.  */
-extern __locale_t duplocale (__locale_t __dataset) __THROW;
+extern locale_t duplocale (locale_t __dataset) __THROW;
 
 /* Free the data associated with a locale dataset previously returned
    by a call to `setlocale_r'.  */
-extern void freelocale (__locale_t __dataset) __THROW;
+extern void freelocale (locale_t __dataset) __THROW;
 
 /* Switch the current thread's locale to DATASET.
    If DATASET is null, instead just return the current setting.
    The special value LC_GLOBAL_LOCALE is the initial setting
    for all threads and can also be installed any time, meaning
    the thread uses the global settings controlled by `setlocale'.  */
-extern __locale_t uselocale (__locale_t __dataset) __THROW;
+extern locale_t uselocale (locale_t __dataset) __THROW;
 
 /* This value can be passed to `uselocale' and may be returned by it.
    Passing this value to any other function has undefined behavior.  */
-# define LC_GLOBAL_LOCALE      ((__locale_t) -1L)
+# define LC_GLOBAL_LOCALE      ((locale_t) -1L)
 
 #endif
 
index f0694dc84e7673a77c096d72d1c17867037398ce..4e1c8c568aba3c8616dc23a6d7f7879cf67145d7 100644 (file)
@@ -214,9 +214,9 @@ extern struct __locale_struct _nl_global_locale attribute_hidden;
 
 /* This fetches the thread-local locale_t pointer, either one set with
    uselocale or &_nl_global_locale.  */
-#define _NL_CURRENT_LOCALE     (__libc_tsd_get (__locale_t, LOCALE))
+#define _NL_CURRENT_LOCALE     (__libc_tsd_get (locale_t, LOCALE))
 #include <libc-tsd.h>
-__libc_tsd_define (extern, __locale_t, LOCALE)
+__libc_tsd_define (extern, locale_t, LOCALE)
 
 
 /* For static linking it is desireable to avoid always linking in the code
index 2190b7351b05b6fa94bf1df4e65313306bd5fba8..828d715c371f82693981e5502ea4ab4d036820f2 100644 (file)
@@ -39,13 +39,13 @@ __libc_rwlock_define (extern , __libc_setlocale_lock attribute_hidden)
   } while (0)
 
 
-__locale_t
-__newlocale (int category_mask, const char *locale, __locale_t base)
+locale_t
+__newlocale (int category_mask, const char *locale, locale_t base)
 {
   /* Intermediate memory for result.  */
   const char *newnames[__LC_LAST];
   struct __locale_struct result;
-  __locale_t result_ptr;
+  locale_t result_ptr;
   char *locale_path;
   size_t locale_path_len;
   const char *locpath_var;
@@ -86,7 +86,7 @@ __newlocale (int category_mask, const char *locale, __locale_t base)
      dataset using the C locale data.  */
   if (category_mask == 0)
     {
-      result_ptr = (__locale_t) malloc (sizeof (struct __locale_struct));
+      result_ptr = (locale_t) malloc (sizeof (struct __locale_struct));
       if (result_ptr == NULL)
        return NULL;
       *result_ptr = result;
index 89acdbde0173911fba4db07fdae84570bf3f87b5..f29a5a550ee61c14dea02d3fed4c2e176ef401fd 100644 (file)
@@ -27,7 +27,7 @@
 /* Return a string with the data for locale-dependent parameter ITEM.  */
 
 char *
-__nl_langinfo_l (nl_item item, __locale_t l)
+__nl_langinfo_l (nl_item item, locale_t l)
 {
   int category = _NL_ITEM_CATEGORY (item);
   unsigned int index = _NL_ITEM_INDEX (item);
index 9ef22d3cf995e3927c641a150399f85bc6aaa959..a66b9cb5d664c9a4b948fe63812eee119c9ee58c 100644 (file)
@@ -34,7 +34,7 @@ __uselocale (locale_t newloc)
     {
       const locale_t locobj
        = newloc == LC_GLOBAL_LOCALE ? &_nl_global_locale : newloc;
-      __libc_tsd_set (__locale_t, LOCALE, locobj);
+      __libc_tsd_set (locale_t, LOCALE, locobj);
 
 #ifdef NL_CURRENT_INDIRECT
       /* Now we must update all the per-category thread-local variables to
index 0637067de77deb1d351b441d6c8d83994569cd05..5f4a2d1a96a46e8dda2d00f90205406d3e989ec0 100644 (file)
@@ -8,7 +8,7 @@
 static int
 do_test (void)
 {
-  __locale_t loc_new, loc_old;
+  locale_t loc_new, loc_old;
 
   int first = !!isalpha(0xE4);
 
index 30d87de72b56d3f2430558371906467fd7dafea1..7f990501686df97292fda1c33f108a6ffdb03721 100644 (file)
@@ -4,7 +4,7 @@
 #include <stdlib.h>
 
 
-static int do_test (__locale_t l);
+static int do_test (locale_t l);
 
 int
 main (void)
index 1adf27e11b2441263cc3cc73fce339a6858aac64..7d9d17bd84f105fa160eaa2377ae0bd24dba0963 100644 (file)
@@ -289,7 +289,7 @@ _IO_vfscanf_internal (_IO_FILE *s, const char *format, _IO_va_list argptr,
   int flags;           /* Modifiers for current format element.  */
   int errval = 0;
 #ifndef COMPILE_WSCANF
-  __locale_t loc = _NL_CURRENT_LOCALE;
+  locale_t loc = _NL_CURRENT_LOCALE;
   struct __locale_data *const curctype = loc->__locales[LC_CTYPE];
 #endif
 
index c1fcbf06d1783b571430eb94eac4c207e68e567b..2c35cc15b900d4e6f3e37fb024bcc69ff46aff6a 100644 (file)
@@ -45,7 +45,7 @@ extern ssize_t strfmon (char *__restrict __s, size_t __maxsize,
 
 /* Formatting a monetary value according to the given locale.  */
 extern ssize_t strfmon_l (char *__restrict __s, size_t __maxsize,
-                         __locale_t __loc,
+                         locale_t __loc,
                          const char *__restrict __format, ...)
      __THROW __attribute_format_strfmon__ (4, 5);
 #endif
index ce2602e03ad065245aa9c9c6b6cddf18295437da..7a720cfd11e84877fae51d1b287f1ebbccef1d1b 100644 (file)
@@ -200,42 +200,42 @@ extern int strfromf128 (char *__dest, size_t __size, const char * __format,
 
 extern long int strtol_l (const char *__restrict __nptr,
                          char **__restrict __endptr, int __base,
-                         __locale_t __loc) __THROW __nonnull ((1, 4));
+                         locale_t __loc) __THROW __nonnull ((1, 4));
 
 extern unsigned long int strtoul_l (const char *__restrict __nptr,
                                    char **__restrict __endptr,
-                                   int __base, __locale_t __loc)
+                                   int __base, locale_t __loc)
      __THROW __nonnull ((1, 4));
 
 __extension__
 extern long long int strtoll_l (const char *__restrict __nptr,
                                char **__restrict __endptr, int __base,
-                               __locale_t __loc)
+                               locale_t __loc)
      __THROW __nonnull ((1, 4));
 
 __extension__
 extern unsigned long long int strtoull_l (const char *__restrict __nptr,
                                          char **__restrict __endptr,
-                                         int __base, __locale_t __loc)
+                                         int __base, locale_t __loc)
      __THROW __nonnull ((1, 4));
 
 extern double strtod_l (const char *__restrict __nptr,
-                       char **__restrict __endptr, __locale_t __loc)
+                       char **__restrict __endptr, locale_t __loc)
      __THROW __nonnull ((1, 3));
 
 extern float strtof_l (const char *__restrict __nptr,
-                      char **__restrict __endptr, __locale_t __loc)
+                      char **__restrict __endptr, locale_t __loc)
      __THROW __nonnull ((1, 3));
 
 extern long double strtold_l (const char *__restrict __nptr,
                              char **__restrict __endptr,
-                             __locale_t __loc)
+                             locale_t __loc)
      __THROW __nonnull ((1, 3));
 
 # if __HAVE_FLOAT128
 extern _Float128 strtof128_l (const char *__restrict __nptr,
                              char **__restrict __endptr,
-                             __locale_t __loc)
+                             locale_t __loc)
      __THROW __nonnull ((1, 3));
 # endif
 #endif /* GNU */
index af641738003f0df1e9357f3fa9688c132b19ed15..69ca9d5d3b8c6553b3fcc28d23be116409a18cc3 100644 (file)
@@ -81,7 +81,7 @@ extern unsigned int __guess_grouping (unsigned int intdig_max,
    too.  Some of the information contradicts the information which can
    be specified in format string.  */
 ssize_t
-__vstrfmon_l (char *s, size_t maxsize, __locale_t loc, const char *format,
+__vstrfmon_l (char *s, size_t maxsize, locale_t loc, const char *format,
              va_list ap)
 {
   struct __locale_data *current = loc->__locales[LC_MONETARY];
@@ -609,7 +609,7 @@ __vstrfmon_l (char *s, size_t maxsize, __locale_t loc, const char *format,
 }
 
 ssize_t
-___strfmon_l (char *s, size_t maxsize, __locale_t loc, const char *format, ...)
+___strfmon_l (char *s, size_t maxsize, locale_t loc, const char *format, ...)
 {
   va_list ap;
 
index a782a2434bd8b88a1ac87540e79ddc8b109a7516..9fc9e4c0130f0ae97f29a9b343f18a2599e8ffcf 100644 (file)
@@ -19,7 +19,7 @@
 
 #include <locale.h>
 
-extern double ____strtod_l_internal (const char *, char **, int, __locale_t);
+extern double ____strtod_l_internal (const char *, char **, int, locale_t);
 
 /* Configuration part.  These macros are defined by `strtold.c',
    `strtof.c', `wcstod.c', `wcstold.c', and `wcstof.c' to produce the
@@ -484,7 +484,7 @@ str_to_mpn (const STRING_TYPE *str, int digcnt, mp_limb_t *n, mp_size_t *nsize,
    ERANGE and return HUGE_VAL with the appropriate sign.  */
 FLOAT
 ____STRTOF_INTERNAL (const STRING_TYPE *nptr, STRING_TYPE **endptr, int group,
-                    __locale_t loc)
+                    locale_t loc)
 {
   int negative;                        /* The sign of the number.  */
   MPN_VAR (num);               /* MP representation of the number.  */
@@ -1758,7 +1758,7 @@ FLOAT
 #ifdef weak_function
 weak_function
 #endif
-__STRTOF (const STRING_TYPE *nptr, STRING_TYPE **endptr, __locale_t loc)
+__STRTOF (const STRING_TYPE *nptr, STRING_TYPE **endptr, locale_t loc)
 {
   return ____STRTOF_INTERNAL (nptr, endptr, 0, loc);
 }
index ea76c344f407ca981cb93841a111ed01b2d050b8..33be42f96d3856a20db8aaf4101fb01682c10454 100644 (file)
@@ -19,7 +19,7 @@
 
 #include <locale.h>
 
-extern float ____strtof_l_internal (const char *, char **, int, __locale_t);
+extern float ____strtof_l_internal (const char *, char **, int, locale_t);
 
 #define        FLOAT           float
 #define        FLT             FLT
index 8ac8347e7d926cc55d537fc78f42f9aa4e4520bd..d1e3bfe12903997febdaf1f6b29cdb84a7af206f 100644 (file)
@@ -88,7 +88,7 @@
 
 
 extern INT INTERNAL (__strtol_l) (const STRING_TYPE *, STRING_TYPE **, int,
-                                 int, __locale_t);
+                                 int, locale_t);
 
 
 INT
index 48e9ab5310468076f4cbb72aedbc2733da42e45e..28ea4bced19cae66440901257d3681985fec220b 100644 (file)
@@ -222,7 +222,7 @@ extern const unsigned char __strtol_ull_rem_tab[] attribute_hidden;
 
 INT
 INTERNAL (__strtol_l) (const STRING_TYPE *nptr, STRING_TYPE **endptr,
-                      int base, int group, __locale_t loc)
+                      int base, int group, locale_t loc)
 {
   int negative;
   unsigned LONG int cutoff;
@@ -542,7 +542,7 @@ INT
 weak_function
 #endif
 __strtol_l (const STRING_TYPE *nptr, STRING_TYPE **endptr,
-           int base, __locale_t loc)
+           int base, locale_t loc)
 {
   return INTERNAL (__strtol_l) (nptr, endptr, base, 0, loc);
 }
index 7b9efd8819254009c390509a11652401e3046b6a..7445379fe0a51de80d5847c4991876a766ecd0ad 100644 (file)
 #define INTERNAL1(x) __##x##_internal
 
 extern double INTERNAL (__STRTOD) (const STRING_TYPE *, STRING_TYPE **,
-                                  int, __locale_t);
+                                  int, locale_t);
 
 /* There is no `long double' type, use the `double' implementations.  */
 long double
 INTERNAL (__STRTOLD) (const STRING_TYPE *nptr, STRING_TYPE **endptr,
-                     int group, __locale_t loc)
+                     int group, locale_t loc)
 {
   return INTERNAL (__STRTOD) (nptr, endptr, group, loc);
 }
@@ -50,7 +50,7 @@ libc_hidden_def (INTERNAL (__STRTOLD))
 
 long double
 weak_function
-__STRTOLD (const STRING_TYPE *nptr, STRING_TYPE **endptr, __locale_t loc)
+__STRTOLD (const STRING_TYPE *nptr, STRING_TYPE **endptr, locale_t loc)
 {
   return INTERNAL (__STRTOD) (nptr, endptr, 0, loc);
 }
index 003f425db891db91fdab7c26f57659eb886f2647..93548d08d029afadc495e819ffdfff4da5d74cd6 100644 (file)
@@ -22,6 +22,6 @@
 #include <locale.h>
 
 extern long long int ____strtoll_l_internal (const char *, char **, int, int,
-                                            __locale_t);
+                                            locale_t);
 
 #include <strtol_l.c>
index 45b0585342725df7d977d6fe4e629a0848657468..8a0934c9ad9825d1350b39e4f70a09690906a328 100644 (file)
@@ -22,6 +22,6 @@
 #include <locale.h>
 
 extern unsigned long int ____strtoul_l_internal (const char *, char **, int,
-                                                int, __locale_t);
+                                                int, locale_t);
 
 #include "strtol_l.c"
index da6d7cde8caa0b13ffa8589658745c07dafc6401..a9de8eb77872ea227c60d263ba84bc49f6ab9b67 100644 (file)
@@ -23,6 +23,6 @@
 #include <locale.h>
 
 extern unsigned long long int ____strtoull_l_internal (const char *, char **,
-                                                      int, int, __locale_t);
+                                                      int, int, locale_t);
 
 #include <strtol_l.c>
index 2d6ae0fa9d08abfcf57249b00adefe841dc547c5..d7399638a6389057e60d4092747fd6ddcff69773 100644 (file)
@@ -34,7 +34,7 @@
 #endif
 
 #ifdef USE_IN_EXTENDED_LOCALE_MODEL
-# define LOCALE_PARAM , __locale_t loc
+# define LOCALE_PARAM , locale_t loc
 #else
 # define LOCALE_PARAM
 #endif
@@ -46,7 +46,7 @@ int
 __strcasecmp (const char *s1, const char *s2 LOCALE_PARAM)
 {
 #if defined _LIBC && !defined USE_IN_EXTENDED_LOCALE_MODEL
-  __locale_t loc = _NL_CURRENT_LOCALE;
+  locale_t loc = _NL_CURRENT_LOCALE;
 #endif
   const unsigned char *p1 = (const unsigned char *) s1;
   const unsigned char *p2 = (const unsigned char *) s2;
index 8fd55b000afdfed3f45fa5d34e4d2085564f479f..d46932c1cb0f9389a5f5f534fec064b49f532190 100644 (file)
@@ -254,7 +254,7 @@ out:
 }
 
 int
-STRCOLL (const STRING_TYPE *s1, const STRING_TYPE *s2, __locale_t l)
+STRCOLL (const STRING_TYPE *s1, const STRING_TYPE *s2, locale_t l)
 {
   struct __locale_data *current = l->__locales[LC_COLLATE];
   uint_fast32_t nrules = current->values[_NL_ITEM_INDEX (_NL_COLLATE_NRULES)].word;
index fb073d0b0302a7afae4476e064d897c7a9a78b7e..79f8345c3a8b7eca88fa7df4552250ca880921b6 100644 (file)
@@ -152,12 +152,12 @@ extern size_t strxfrm (char *__restrict __dest,
 # include <bits/types/locale_t.h>
 
 /* Compare the collated forms of S1 and S2, using sorting rules from L.  */
-extern int strcoll_l (const char *__s1, const char *__s2, __locale_t __l)
+extern int strcoll_l (const char *__s1, const char *__s2, locale_t __l)
      __THROW __attribute_pure__ __nonnull ((1, 2, 3));
 /* Put a transformation of SRC into no more than N bytes of DEST,
    using sorting rules from L.  */
 extern size_t strxfrm_l (char *__dest, const char *__src, size_t __n,
-                        __locale_t __l) __THROW __nonnull ((2, 4));
+                        locale_t __l) __THROW __nonnull ((2, 4));
 #endif
 
 #if (defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K8    \
@@ -424,7 +424,7 @@ extern char *strerror_r (int __errnum, char *__buf, size_t __buflen)
 
 #ifdef __USE_XOPEN2K8
 /* Translate error number to string according to the locale L.  */
-extern char *strerror_l (int __errnum, __locale_t __l) __THROW;
+extern char *strerror_l (int __errnum, locale_t __l) __THROW;
 #endif
 
 #ifdef __USE_MISC
index 53d1b5c9442e6c68c5769f917538c7384afde166..630b3adc2381c0bff65963011e1e27b3d71d5902 100644 (file)
@@ -125,13 +125,13 @@ extern int strncasecmp (const char *__s1, const char *__s2, size_t __n)
 # include <bits/types/locale_t.h>
 
 /* Compare S1 and S2, ignoring case, using collation rules from LOC.  */
-extern int strcasecmp_l (const char *__s1, const char *__s2, __locale_t __loc)
+extern int strcasecmp_l (const char *__s1, const char *__s2, locale_t __loc)
      __THROW __attribute_pure__ __nonnull ((1, 2, 3));
 
 /* Compare no more than N chars of S1 and S2, ignoring case, using
    collation rules from LOC.  */
 extern int strncasecmp_l (const char *__s1, const char *__s2,
-                         size_t __n, __locale_t __loc)
+                         size_t __n, locale_t __loc)
      __THROW __attribute_pure__ __nonnull ((1, 2, 4));
 #endif
 
index 6cb996cf91780c603c1d54b1981dd46d0b6d2235..ba42b61bc5f2dd1691902cb065e91eb0cb42f695 100644 (file)
@@ -36,7 +36,7 @@
 #endif
 
 #ifdef USE_IN_EXTENDED_LOCALE_MODEL
-# define LOCALE_PARAM , __locale_t loc
+# define LOCALE_PARAM , locale_t loc
 #else
 # define LOCALE_PARAM
 #endif
@@ -49,7 +49,7 @@ int
 __strncasecmp (const char *s1, const char *s2, size_t n LOCALE_PARAM)
 {
 #if defined _LIBC && !defined USE_IN_EXTENDED_LOCALE_MODEL
-  __locale_t loc = _NL_CURRENT_LOCALE;
+  locale_t loc = _NL_CURRENT_LOCALE;
 #endif
   const unsigned char *p1 = (const unsigned char *) s1;
   const unsigned char *p2 = (const unsigned char *) s2;
index dd98a4caaf097fe6504179b48d941ec070dc006f..7e04bfc14a9992c846effef04f9b8044beb832d8 100644 (file)
@@ -665,7 +665,7 @@ do_xfrm_cached (STRING_TYPE *dest, size_t n, const locale_data_t *l_data,
 }
 
 size_t
-STRXFRM (STRING_TYPE *dest, const STRING_TYPE *src, size_t n, __locale_t l)
+STRXFRM (STRING_TYPE *dest, const STRING_TYPE *src, size_t n, locale_t l)
 {
   locale_data_t l_data;
   struct __locale_data *current = l->__locales[LC_COLLATE];
index 0f768a30deb80ada891ff18908595f8c3ef97870..d3d55ea9fa6ce4dae7c3016c5ee7808af1077c40 100644 (file)
@@ -22,7 +22,7 @@
 #include <bits/floatn.h>
 
 extern _Float128 ____strtof128_l_internal (const char *, char **,
-                                          int, __locale_t);
+                                          int, locale_t);
 
 #define        FLOAT           _Float128
 #define        FLT             FLT128
index c5a17baadf4273f91ae422ee69cfbd77b9c110b7..1d6326d9104b9c3e63b9b6a836df91df25186fe6 100644 (file)
@@ -25,6 +25,6 @@
 #include <bits/floatn.h>
 
 extern _Float128 ____wcstof128_l_internal (const wchar_t *, wchar_t **, int,
-                                          __locale_t);
+                                          locale_t);
 
 #include "strtof128.c"
index 670b6af0da741536771fe63f572fe80728b8be13..2df71848ec16cf4708a080c1d9bacb71b3aba762 100644 (file)
@@ -25,6 +25,6 @@
 #include <bits/floatn.h>
 
 extern _Float128 ____wcstof128_l_internal (const wchar_t *, wchar_t **, int,
-                                          __locale_t);
+                                          locale_t);
 
 #include "strtof128_l.c"
index 341de7806377a3a882da4fd215046ef605c5923a..b12151d579d756174db47dcf50e04b70f185ecd1 100644 (file)
 #define FLOAT          long double
 #define FLT            LDBL
 #ifdef USE_WIDE_CHAR
-extern long double ____new_wcstold_l (const wchar_t *, wchar_t **, __locale_t);
+extern long double ____new_wcstold_l (const wchar_t *, wchar_t **, locale_t);
 # define STRTOF                __new_wcstold_l
 # define __STRTOF      ____new_wcstold_l
 # define ____STRTOF_INTERNAL ____wcstold_l_internal
 # define STRTOF_NAN    __wcstold_nan
 #else
-extern long double ____new_strtold_l (const char *, char **, __locale_t);
+extern long double ____new_strtold_l (const char *, char **, locale_t);
 # define STRTOF                __new_strtold_l
 # define __STRTOF      ____new_strtold_l
 # define ____STRTOF_INTERNAL ____strtold_l_internal
index 341de7806377a3a882da4fd215046ef605c5923a..b12151d579d756174db47dcf50e04b70f185ecd1 100644 (file)
 #define FLOAT          long double
 #define FLT            LDBL
 #ifdef USE_WIDE_CHAR
-extern long double ____new_wcstold_l (const wchar_t *, wchar_t **, __locale_t);
+extern long double ____new_wcstold_l (const wchar_t *, wchar_t **, locale_t);
 # define STRTOF                __new_wcstold_l
 # define __STRTOF      ____new_wcstold_l
 # define ____STRTOF_INTERNAL ____wcstold_l_internal
 # define STRTOF_NAN    __wcstold_nan
 #else
-extern long double ____new_strtold_l (const char *, char **, __locale_t);
+extern long double ____new_strtold_l (const char *, char **, locale_t);
 # define STRTOF                __new_strtold_l
 # define __STRTOF      ____new_strtold_l
 # define ____STRTOF_INTERNAL ____strtold_l_internal
index 84c4aeeed98d0307a93cd1e9a7e24768d8afd606..e11d6d1bd08eae0c081c97d6f4c3122878908855 100644 (file)
@@ -790,7 +790,7 @@ __nldbl_strfmon (char *s, size_t maxsize, const char *format, ...)
 
 ssize_t
 attribute_compat_text_section
-__nldbl___strfmon_l (char *s, size_t maxsize, __locale_t loc,
+__nldbl___strfmon_l (char *s, size_t maxsize, locale_t loc,
                     const char *format, ...)
 {
   va_list ap;
@@ -818,7 +818,7 @@ libc_hidden_def (__nldbl___vstrfmon)
 
 ssize_t
 attribute_compat_text_section
-__nldbl___vstrfmon_l (char *s, size_t maxsize, __locale_t loc,
+__nldbl___vstrfmon_l (char *s, size_t maxsize, locale_t loc,
                      const char *format, va_list ap)
 {
   ssize_t res;
index 0db0e8c42fd1359c28a3a63f51d03c10841c2289..9281e17a37a8938c0bfbcf76de16c3d36a89302e 100644 (file)
@@ -2,7 +2,7 @@
 
 ssize_t
 attribute_hidden
-__strfmon_l (char *s, size_t maxsize, __locale_t loc, const char *format, ...)
+__strfmon_l (char *s, size_t maxsize, locale_t loc, const char *format, ...)
 {
   va_list ap;
   ssize_t res;
index 33ff1ca5b5f29d0249fc82f226b45251014de999..29ad60c8a5031277cec920b35eb7affacff73df7 100644 (file)
@@ -8,11 +8,11 @@
 
 extern double
 __strtod_l (const char *__restrict __nptr, char **__restrict __endptr,
-           __locale_t __loc);
+           locale_t __loc);
 
 double
 attribute_hidden
-__strtold_l (const char *nptr, char **endptr, __locale_t loc)
+__strtold_l (const char *nptr, char **endptr, locale_t loc)
 {
   return __strtod_l (nptr, endptr, loc);
 }
index e32d13a94becc526d6193b0204acf173f1c0f986..7004ae79f4da2807fb7073358dc8ba37e5ed6e61 100644 (file)
@@ -6,7 +6,7 @@
 
 double
 attribute_hidden
-__wcstold_l (const wchar_t *nptr, wchar_t **endptr, __locale_t loc)
+__wcstold_l (const wchar_t *nptr, wchar_t **endptr, locale_t loc)
 {
   return __wcstod_l (nptr, endptr, loc);
 }
index 964875a13bef02f6463d719c5f6382c393c2617b..5aa0d625c898e5397fe762da19c13d509ffd7046 100644 (file)
@@ -24,7 +24,7 @@
    or if defined USE_IN_EXTENDED_LOCALE_MODEL:
 
    int [r3] strcasecmp_l (const char *s1 [r3], const char *s2 [r4],
-                          __locale_t loc [r5]) */
+                          locale_t loc [r5]) */
 
 #ifndef STRCMP
 # define __STRCMP __strcasecmp
index 224318720e4f970e40573b1b4b14e45e5f4a25a8..c453ccd2900823d03bd4d92d4104aa8873fff5d4 100644 (file)
@@ -24,7 +24,7 @@
    or if defined USE_IN_EXTENDED_LOCALE_MODEL:
 
    int [r3] strcasecmp_l (const char *s1 [r3], const char *s2 [r4],
-                          __locale_t loc [r5]) */
+                          locale_t loc [r5]) */
 
 #ifndef STRCMP
 # define __STRCMP __strcasecmp
index 30e8969603ea781708e3b61a1f2d8e03e5edfb85..9ba9bc808c5daecdbecfe16638c735245520ab86 100644 (file)
@@ -1,7 +1,7 @@
 #include <string.h>
 
 extern int __strcasecmp_l_nonascii (const char *__s1, const char *__s2,
-                                   __locale_t __loc);
+                                   locale_t __loc);
 
 #define __strcasecmp_l __strcasecmp_l_nonascii
 #define USE_IN_EXTENDED_LOCALE_MODEL    1
index 8664863778a1d0d783d297d076712b2eac72f20a..e3d83a06cd522c2d66d706ae0ed22e1c9927926f 100644 (file)
@@ -1,7 +1,7 @@
 #include <string.h>
 
 extern int __strncasecmp_l_nonascii (const char *__s1, const char *__s2,
-                                    size_t __n, __locale_t __loc);
+                                    size_t __n, locale_t __loc);
 
 #define __strncasecmp_l __strncasecmp_l_nonascii
 #define USE_IN_EXTENDED_LOCALE_MODEL    1
index eb3efb81299e5c0e859c80e127350b3802255f79..439b971747a75d2add00e0f0a5fe0f1052c9408a 100644 (file)
@@ -284,7 +284,7 @@ static const CHAR_T zeroes[16] = /* "0000000000000000" */
 # undef _NL_CURRENT
 # define _NL_CURRENT(category, item) \
   (current->values[_NL_ITEM_INDEX (item)].string)
-# define LOCALE_PARAM , __locale_t loc
+# define LOCALE_PARAM , locale_t loc
 # define LOCALE_ARG , loc
 # define HELPER_LOCALE_ARG  , current
 #else
index dbf4606982a06d7a19a21e8cdec4c44c51f5be2a..185619e14277edc76d387a05d702b5580a3966e8 100644 (file)
@@ -181,7 +181,7 @@ static const unsigned short int __mon_yday[2][13] =
 # undef _NL_CURRENT_WORD
 # define _NL_CURRENT_WORD(category, item) \
   (current->values[_NL_ITEM_INDEX (item)].word)
-# define LOCALE_PARAM , __locale_t locale
+# define LOCALE_PARAM , locale_t locale
 # define LOCALE_ARG , locale
 # define HELPER_LOCALE_ARG , current
 # define ISSPACE(Ch) __isspace_l (Ch, locale)
index 17cc1e66149632dcb238d362e24cd31dd32e4bd3..f12a4613fc153e8159c51d85878dc6e5449eb622 100644 (file)
@@ -104,13 +104,13 @@ extern char *strptime (const char *__restrict __s,
 extern size_t strftime_l (char *__restrict __s, size_t __maxsize,
                          const char *__restrict __format,
                          const struct tm *__restrict __tp,
-                         __locale_t __loc) __THROW;
+                         locale_t __loc) __THROW;
 #endif
 
 #ifdef __USE_GNU
 extern char *strptime_l (const char *__restrict __s,
                         const char *__restrict __fmt, struct tm *__tp,
-                        __locale_t __loc) __THROW;
+                        locale_t __loc) __THROW;
 #endif
 
 
index 4ffb652b26de88f3b70f22f94a017a9a65b2c2eb..33b432a295c49e14d58d4df6191cbba6f4d8544c 100644 (file)
@@ -38,7 +38,7 @@
 size_t
 attribute_hidden
 __mbsrtowcs_l (wchar_t *dst, const char **src, size_t len, mbstate_t *ps,
-              __locale_t l)
+              locale_t l)
 {
   struct __gconv_step_data data;
   size_t result;
index 9054661788ebe11a59d5157bfce02028b7eeb48e..4f16f98b1dc460b562ed02836f35b7a06133f842 100644 (file)
@@ -120,10 +120,10 @@ extern int wcsncasecmp (const wchar_t *__s1, const wchar_t *__s2,
 /* Similar to the two functions above but take the information from
    the provided locale and not the global locale.  */
 extern int wcscasecmp_l (const wchar_t *__s1, const wchar_t *__s2,
-                        __locale_t __loc) __THROW;
+                        locale_t __loc) __THROW;
 
 extern int wcsncasecmp_l (const wchar_t *__s1, const wchar_t *__s2,
-                         size_t __n, __locale_t __loc) __THROW;
+                         size_t __n, locale_t __loc) __THROW;
 #endif
 
 /* Compare S1 and S2, both interpreted as appropriate to the
@@ -142,13 +142,13 @@ extern size_t wcsxfrm (wchar_t *__restrict __s1,
 /* Compare S1 and S2, both interpreted as appropriate to the
    LC_COLLATE category of the given locale.  */
 extern int wcscoll_l (const wchar_t *__s1, const wchar_t *__s2,
-                     __locale_t __loc) __THROW;
+                     locale_t __loc) __THROW;
 
 /* Transform S2 into array pointed to by S1 such that if wcscmp is
    applied to two transformed strings the result is the as applying
    `wcscoll' to the original strings.  */
 extern size_t wcsxfrm_l (wchar_t *__s1, const wchar_t *__s2,
-                        size_t __n, __locale_t __loc) __THROW;
+                        size_t __n, locale_t __loc) __THROW;
 
 /* Duplicate S, returning an identical malloc'd string.  */
 extern wchar_t *wcsdup (const wchar_t *__s) __THROW __attribute_malloc__;
@@ -441,39 +441,39 @@ extern unsigned long long int wcstouq (const wchar_t *__restrict __nptr,
    by the POSIX.1-2008 extended locale API.  */
 extern long int wcstol_l (const wchar_t *__restrict __nptr,
                          wchar_t **__restrict __endptr, int __base,
-                         __locale_t __loc) __THROW;
+                         locale_t __loc) __THROW;
 
 extern unsigned long int wcstoul_l (const wchar_t *__restrict __nptr,
                                    wchar_t **__restrict __endptr,
-                                   int __base, __locale_t __loc) __THROW;
+                                   int __base, locale_t __loc) __THROW;
 
 __extension__
 extern long long int wcstoll_l (const wchar_t *__restrict __nptr,
                                wchar_t **__restrict __endptr,
-                               int __base, __locale_t __loc) __THROW;
+                               int __base, locale_t __loc) __THROW;
 
 __extension__
 extern unsigned long long int wcstoull_l (const wchar_t *__restrict __nptr,
                                          wchar_t **__restrict __endptr,
-                                         int __base, __locale_t __loc)
+                                         int __base, locale_t __loc)
      __THROW;
 
 extern double wcstod_l (const wchar_t *__restrict __nptr,
-                       wchar_t **__restrict __endptr, __locale_t __loc)
+                       wchar_t **__restrict __endptr, locale_t __loc)
      __THROW;
 
 extern float wcstof_l (const wchar_t *__restrict __nptr,
-                      wchar_t **__restrict __endptr, __locale_t __loc)
+                      wchar_t **__restrict __endptr, locale_t __loc)
      __THROW;
 
 extern long double wcstold_l (const wchar_t *__restrict __nptr,
                              wchar_t **__restrict __endptr,
-                             __locale_t __loc) __THROW;
+                             locale_t __loc) __THROW;
 
 # if __HAVE_FLOAT128
 extern _Float128 wcstof128_l (const wchar_t *__restrict __nptr,
                              wchar_t **__restrict __endptr,
-                             __locale_t __loc) __THROW;
+                             locale_t __loc) __THROW;
 # endif
 #endif /* use GNU */
 
@@ -775,7 +775,7 @@ extern size_t wcsftime (wchar_t *__restrict __s, size_t __maxsize,
 extern size_t wcsftime_l (wchar_t *__restrict __s, size_t __maxsize,
                          const wchar_t *__restrict __format,
                          const struct tm *__restrict __tp,
-                         __locale_t __loc) __THROW;
+                         locale_t __loc) __THROW;
 # endif
 
 /* Define some macros helping to catch buffer overflows.  */
index 0f02e505c07a00b417ceb7c7b2237a883db02b7f..e5db0091ec470d67a7afeffe88e69432f9b01a62 100644 (file)
@@ -35,7 +35,7 @@
 #endif
 
 #ifdef USE_IN_EXTENDED_LOCALE_MODEL
-# define LOCALE_PARAM , __locale_t loc
+# define LOCALE_PARAM , locale_t loc
 #else
 # define LOCALE_PARAM
 #endif
index 945434ce5a5c74ab93a9aad5bfda3adf281c6d71..82fc31bb682a9e1a7d5bd112079eb94031e181ac 100644 (file)
@@ -37,7 +37,7 @@
 #endif
 
 #ifdef USE_IN_EXTENDED_LOCALE_MODEL
-# define LOCALE_PARAM , __locale_t loc
+# define LOCALE_PARAM , locale_t loc
 #else
 # define LOCALE_PARAM
 #endif
index 72fa7eaaa470f71c5c6e4cae9cbd8ec9bdb7d09c..4604f516214f87fe403a61b9d7830f532393f3d5 100644 (file)
@@ -23,6 +23,6 @@
 #define        USE_WIDE_CHAR   1
 
 extern double ____wcstod_l_internal (const wchar_t *, wchar_t **, int,
-                                    __locale_t);
+                                    locale_t);
 
 #include <stdlib/strtod.c>
index 1d5c67cf3682e53fd24622a34ed98dda87d83fdc..7790f5abb703f64fbf2d480637c0f8532f5eb68a 100644 (file)
@@ -22,7 +22,7 @@
 
 
 extern double ____wcstod_l_internal (const wchar_t *, wchar_t **, int,
-                                    __locale_t);
+                                    locale_t);
 
 #define        USE_WIDE_CHAR   1
 
index 67c16e0cfd49b67db206ada6e0a620479266198b..e91c09cd530bc1b711cfa831347d1a1b02f027f7 100644 (file)
@@ -22,6 +22,6 @@
 #define        USE_WIDE_CHAR   1
 
 extern float ____wcstof_l_internal (const wchar_t *, wchar_t **, int,
-                                   __locale_t);
+                                   locale_t);
 
 #include <stdlib/strtof.c>
index d430bf1c3b5a0134c578e4b23da7216d767a5cc0..143b716d07fc1587808c89de15539639376a75e9 100644 (file)
@@ -24,6 +24,6 @@
 #define        USE_WIDE_CHAR   1
 
 extern float ____wcstof_l_internal (const wchar_t *, wchar_t **, int,
-                                   __locale_t);
+                                   locale_t);
 
 #include <stdlib/strtof_l.c>
index 744f8f85b726050ee17ca358f186b7d85cbecb3c..42bd8429d0d5aceede7b52416e2ad1caa5a0290d 100644 (file)
@@ -24,6 +24,6 @@
 #define        USE_WIDE_CHAR   1
 
 extern long int ____wcstol_l_internal (const wchar_t *, wchar_t **, int, int,
-                                      __locale_t);
+                                      locale_t);
 
 #include <stdlib/strtol_l.c>
index 816f43bf69c6f1d7e6afa92c4931d1e724544da1..7a14cd2871e90269b8d80905fb47bdadd541e5ca 100644 (file)
@@ -22,6 +22,6 @@
 #define USE_WIDE_CHAR  1
 
 extern long double ____wcstold_l_internal (const wchar_t *, wchar_t **, int,
-                                          __locale_t);
+                                          locale_t);
 
 #include <stdlib/strtold.c>
index 86f63e8801badad1cf3e8fa5459fb0678519cc7a..a7ab02579252e4ba668c5fb53cc6261f3bdef392 100644 (file)
@@ -23,6 +23,6 @@
 #define USE_WIDE_CHAR  1
 
 extern long double ____wcstold_l_internal (const wchar_t *, wchar_t **, int,
-                                          __locale_t);
+                                          locale_t);
 
 #include <strtold_l.c>
index 225153f5477229d79cdac6c34a74b49747b203e0..598d3f5fff50eeda44eadfd6bdd7980582bf22a7 100644 (file)
@@ -24,6 +24,6 @@
 #define QUAD   1
 
 extern long long int ____wcstoll_l_internal (const wchar_t *, wchar_t **,
-                                            int, int, __locale_t);
+                                            int, int, locale_t);
 
 #include <wcstol_l.c>
index 0847284bc2ee00f89641949723751fbee2d9c39e..f9f3808b20c24b970866939112c605f7ad3434a0 100644 (file)
@@ -24,6 +24,6 @@
 #define UNSIGNED       1
 
 extern unsigned long int ____wcstoul_l_internal (const wchar_t *, wchar_t **,
-                                                int, int, __locale_t);
+                                                int, int, locale_t);
 
 #include "wcstol_l.c"
index 532d01a250e963d04d6c1fe647f91d930a58133b..412a9fcf0a09ef217aad6004a20852cee9d9dbe3 100644 (file)
@@ -25,6 +25,6 @@
 
 extern unsigned long long int ____wcstoull_l_internal (const wchar_t *,
                                                       wchar_t **, int, int,
-                                                      __locale_t);
+                                                      locale_t);
 
 #include <wcstoll_l.c>
index 9a5daecda5ab12bdffd4742c94da99b4a9aab13f..0f8526408733a15b54f4f5159e62d7107eec0dd3 100644 (file)
@@ -24,7 +24,7 @@
 
 
 int
-__iswctype_l (wint_t wc, wctype_t desc, __locale_t locale)
+__iswctype_l (wint_t wc, wctype_t desc, locale_t locale)
 {
   /* If the user passes in an invalid DESC valid (the one returned from
      `__wctype_l' in case of an error) simply return 0.  */
index f45f195f076e03bf9c3f66f39ed9e89277651011..1c6589747eea8928405a32d81e21d5219642cea9 100644 (file)
@@ -23,7 +23,7 @@
 #include "wchar-lookup.h"
 
 wint_t
-__towctrans_l (wint_t wc, wctrans_t desc, __locale_t locale)
+__towctrans_l (wint_t wc, wctrans_t desc, locale_t locale)
 {
   /* If the user passes in an invalid DESC valid (the one returned from
      `__wctrans_l' in case of an error) simply return the value.  */
index 994813bb6227d4a6d4b51687bf3ab71320db5b32..d45dc10324981ddda87921f0fe79026d6de556cc 100644 (file)
@@ -27,7 +27,7 @@
 /* Provide real-function versions of all the wctype macros.  */
 
 #define        func(name, type) \
-  int __isw##name (wint_t wc, __locale_t locale)                             \
+  int __isw##name (wint_t wc, locale_t locale)                               \
   {                                                                          \
     if (isascii (wc))                                                        \
       return is##name ((int) wc, locale);                                    \
@@ -54,7 +54,7 @@ func (upper_l, __ISwupper)
 func (xdigit_l, __ISwxdigit)
 
 wint_t
-(__towlower_l) (wint_t wc, __locale_t locale)
+(__towlower_l) (wint_t wc, locale_t locale)
 {
   size_t i = locale->__locales[LC_CTYPE]->values[_NL_ITEM_INDEX (_NL_CTYPE_MAP_OFFSET)].word + __TOW_tolower;
   const char *desc = locale->__locales[LC_CTYPE]->values[i].string;
@@ -64,7 +64,7 @@ libc_hidden_def (__towlower_l)
 weak_alias (__towlower_l, towlower_l)
 
 wint_t
-(__towupper_l) (wint_t wc, __locale_t locale)
+(__towupper_l) (wint_t wc, locale_t locale)
 {
   size_t i = locale->__locales[LC_CTYPE]->values[_NL_ITEM_INDEX (_NL_CTYPE_MAP_OFFSET)].word + __TOW_toupper;
   const char *desc = locale->__locales[LC_CTYPE]->values[i].string;
index 10a960bac1874e3b8f66b7a5b55ed9ce40a7ef96..e64c303c8541c4e2e1dff2beba781e1ffcd0e7c3 100644 (file)
@@ -21,7 +21,7 @@
 #include "../locale/localeinfo.h"
 
 wctrans_t
-__wctrans_l (const char *property, __locale_t locale)
+__wctrans_l (const char *property, locale_t locale)
 {
   const char *names;
   size_t cnt;
index 7945795b44ac1f0e07d8cd385e856166532049da..3bcf9c6a3a2f6dd0b29ef0e8c8dea7907f0b6efc 100644 (file)
@@ -60,66 +60,66 @@ extern wint_t towctrans (wint_t __wc, wctrans_t __desc) __THROW;
 
 /* Test for any wide character for which `iswalpha' or `iswdigit' is
    true.  */
-extern int iswalnum_l (wint_t __wc, __locale_t __locale) __THROW;
+extern int iswalnum_l (wint_t __wc, locale_t __locale) __THROW;
 
 /* Test for any wide character for which `iswupper' or 'iswlower' is
    true, or any wide character that is one of a locale-specific set of
    wide-characters for which none of `iswcntrl', `iswdigit',
    `iswpunct', or `iswspace' is true.  */
-extern int iswalpha_l (wint_t __wc, __locale_t __locale) __THROW;
+extern int iswalpha_l (wint_t __wc, locale_t __locale) __THROW;
 
 /* Test for any control wide character.  */
-extern int iswcntrl_l (wint_t __wc, __locale_t __locale) __THROW;
+extern int iswcntrl_l (wint_t __wc, locale_t __locale) __THROW;
 
 /* Test for any wide character that corresponds to a decimal-digit
    character.  */
-extern int iswdigit_l (wint_t __wc, __locale_t __locale) __THROW;
+extern int iswdigit_l (wint_t __wc, locale_t __locale) __THROW;
 
 /* Test for any wide character for which `iswprint' is true and
    `iswspace' is false.  */
-extern int iswgraph_l (wint_t __wc, __locale_t __locale) __THROW;
+extern int iswgraph_l (wint_t __wc, locale_t __locale) __THROW;
 
 /* Test for any wide character that corresponds to a lowercase letter
    or is one of a locale-specific set of wide characters for which
    none of `iswcntrl', `iswdigit', `iswpunct', or `iswspace' is true.  */
-extern int iswlower_l (wint_t __wc, __locale_t __locale) __THROW;
+extern int iswlower_l (wint_t __wc, locale_t __locale) __THROW;
 
 /* Test for any printing wide character.  */
-extern int iswprint_l (wint_t __wc, __locale_t __locale) __THROW;
+extern int iswprint_l (wint_t __wc, locale_t __locale) __THROW;
 
 /* Test for any printing wide character that is one of a
    locale-specific et of wide characters for which neither `iswspace'
    nor `iswalnum' is true.  */
-extern int iswpunct_l (wint_t __wc, __locale_t __locale) __THROW;
+extern int iswpunct_l (wint_t __wc, locale_t __locale) __THROW;
 
 /* Test for any wide character that corresponds to a locale-specific
    set of wide characters for which none of `iswalnum', `iswgraph', or
    `iswpunct' is true.  */
-extern int iswspace_l (wint_t __wc, __locale_t __locale) __THROW;
+extern int iswspace_l (wint_t __wc, locale_t __locale) __THROW;
 
 /* Test for any wide character that corresponds to an uppercase letter
    or is one of a locale-specific set of wide character for which none
    of `iswcntrl', `iswdigit', `iswpunct', or `iswspace' is true.  */
-extern int iswupper_l (wint_t __wc, __locale_t __locale) __THROW;
+extern int iswupper_l (wint_t __wc, locale_t __locale) __THROW;
 
 /* Test for any wide character that corresponds to a hexadecimal-digit
    character equivalent to that performed be the functions described
    in the previous subclause.  */
-extern int iswxdigit_l (wint_t __wc, __locale_t __locale) __THROW;
+extern int iswxdigit_l (wint_t __wc, locale_t __locale) __THROW;
 
 /* Test for any wide character that corresponds to a standard blank
    wide character or a locale-specific set of wide characters for
    which `iswalnum' is false.  */
-extern int iswblank_l (wint_t __wc, __locale_t __locale) __THROW;
+extern int iswblank_l (wint_t __wc, locale_t __locale) __THROW;
 
 /* Construct value that describes a class of wide characters identified
    by the string argument PROPERTY.  */
-extern wctype_t wctype_l (const char *__property, __locale_t __locale)
+extern wctype_t wctype_l (const char *__property, locale_t __locale)
      __THROW;
 
 /* Determine whether the wide-character WC has the property described by
    DESC.  */
-extern int iswctype_l (wint_t __wc, wctype_t __desc, __locale_t __locale)
+extern int iswctype_l (wint_t __wc, wctype_t __desc, locale_t __locale)
      __THROW;
 
 /*
@@ -127,19 +127,19 @@ extern int iswctype_l (wint_t __wc, wctype_t __desc, __locale_t __locale)
  */
 
 /* Converts an uppercase letter to the corresponding lowercase letter.  */
-extern wint_t towlower_l (wint_t __wc, __locale_t __locale) __THROW;
+extern wint_t towlower_l (wint_t __wc, locale_t __locale) __THROW;
 
 /* Converts an lowercase letter to the corresponding uppercase letter.  */
-extern wint_t towupper_l (wint_t __wc, __locale_t __locale) __THROW;
+extern wint_t towupper_l (wint_t __wc, locale_t __locale) __THROW;
 
 /* Construct value that describes a mapping between wide characters
    identified by the string argument PROPERTY.  */
-extern wctrans_t wctrans_l (const char *__property, __locale_t __locale)
+extern wctrans_t wctrans_l (const char *__property, locale_t __locale)
      __THROW;
 
 /* Map the wide character WC using the mapping described by DESC.  */
 extern wint_t towctrans_l (wint_t __wc, wctrans_t __desc,
-                          __locale_t __locale) __THROW;
+                          locale_t __locale) __THROW;
 
 # endif /* Use POSIX 2008.  */
 
index c17a1e9ce6135fde8a75ee33239d54129b432de6..ea60ba315eb437b028dcfde62e1c3543e5a4d35b 100644 (file)
@@ -23,7 +23,7 @@
 #include <locale/localeinfo.h>
 
 wctype_t
-__wctype_l (const char *property, __locale_t locale)
+__wctype_l (const char *property, locale_t locale)
 {
   const char *names;
   unsigned int result;