diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-15 17:52:59 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-31 15:59:06 +0200 |
commit | d7ccc6c983632f89064e0405e724ca6e9c1b9e1e (patch) | |
tree | 2ec4f8e58e1720b3956c193150a081f570730bb6 /wcsmbs | |
parent | dab0eecef632487f01460900ede02874092c9169 (diff) | |
download | glibc-d7ccc6c983632f89064e0405e724ca6e9c1b9e1e.tar glibc-d7ccc6c983632f89064e0405e724ca6e9c1b9e1e.tar.gz glibc-d7ccc6c983632f89064e0405e724ca6e9c1b9e1e.tar.bz2 glibc-d7ccc6c983632f89064e0405e724ca6e9c1b9e1e.zip |
iconv, intl, locale, wcsmbs: Remove internal_function
Also adjust parts of the time subdirectory.
Diffstat (limited to 'wcsmbs')
-rw-r--r-- | wcsmbs/wcsmbsload.c | 5 | ||||
-rw-r--r-- | wcsmbs/wcsmbsload.h | 12 |
2 files changed, 5 insertions, 12 deletions
diff --git a/wcsmbs/wcsmbsload.c b/wcsmbs/wcsmbsload.c index 656cc0a8e8..ccafc11222 100644 --- a/wcsmbs/wcsmbsload.c +++ b/wcsmbs/wcsmbsload.c @@ -148,7 +148,6 @@ __libc_rwlock_define (extern, __libc_setlocale_lock attribute_hidden) /* Load conversion functions for the currently selected locale. */ void -internal_function __wcsmbs_load_conv (struct __locale_data *new_category) { /* Acquire the lock. */ @@ -215,7 +214,6 @@ __wcsmbs_load_conv (struct __locale_data *new_category) /* Clone the current conversion function set. */ void -internal_function __wcsmbs_clone_conv (struct gconv_fcts *copy) { const struct gconv_fcts *orig; @@ -236,7 +234,6 @@ __wcsmbs_clone_conv (struct gconv_fcts *copy) /* Get converters for named charset. */ int -internal_function __wcsmbs_named_conv (struct gconv_fcts *copy, const char *name) { copy->towc = __wcsmbs_getfct ("INTERNAL", name, ©->towc_nsteps); @@ -253,7 +250,7 @@ __wcsmbs_named_conv (struct gconv_fcts *copy, const char *name) return 0; } -void internal_function +void _nl_cleanup_ctype (struct __locale_data *locale) { const struct gconv_fcts *const data = locale->private.ctype; diff --git a/wcsmbs/wcsmbsload.h b/wcsmbs/wcsmbsload.h index 3e254a877e..7efe2c1f81 100644 --- a/wcsmbs/wcsmbsload.h +++ b/wcsmbs/wcsmbsload.h @@ -37,20 +37,16 @@ struct gconv_fcts extern const struct gconv_fcts __wcsmbs_gconv_fcts_c attribute_hidden; /* Load conversion functions for the currently selected locale. */ -extern void __wcsmbs_load_conv (struct __locale_data *new_category) - internal_function; +extern void __wcsmbs_load_conv (struct __locale_data *new_category); /* Clone the current `__wcsmbs_load_conv' value. */ -extern void __wcsmbs_clone_conv (struct gconv_fcts *copy) - internal_function; +extern void __wcsmbs_clone_conv (struct gconv_fcts *copy); /* Find the conversion functions for converting to and from NAME. */ -extern int __wcsmbs_named_conv (struct gconv_fcts *copy, const char *name) - internal_function; +extern int __wcsmbs_named_conv (struct gconv_fcts *copy, const char *name); /* Function used for the `private.cleanup' hook. */ -extern void _nl_cleanup_ctype (struct __locale_data *) - internal_function attribute_hidden; +extern void _nl_cleanup_ctype (struct __locale_data *) attribute_hidden; #include <iconv/gconv_int.h> |