diff options
author | Zack Weinberg <zackw@panix.com> | 2018-03-18 17:01:06 -0400 |
---|---|---|
committer | Zack Weinberg <zackw@panix.com> | 2018-03-26 09:05:19 -0400 |
commit | f66704a937db50bbd78acc5c29f569b4c8e35d19 (patch) | |
tree | 92d261f99ff3346bffb3a61f6e788fe0daf6093e /intl | |
parent | 9ea49e16c79bd2acd0d0648ca0163f26dd1c3dae (diff) | |
download | glibc-zack/wip-check-localplt-2.tar glibc-zack/wip-check-localplt-2.tar.gz glibc-zack/wip-check-localplt-2.tar.bz2 glibc-zack/wip-check-localplt-2.zip |
WIP finer-grained, more aggressive local PLT call checkzack/wip-check-localplt-2
Diffstat (limited to 'intl')
-rw-r--r-- | intl/loadinfo.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/intl/loadinfo.h b/intl/loadinfo.h index b559a32e77..4a09260ff5 100644 --- a/intl/loadinfo.h +++ b/intl/loadinfo.h @@ -73,7 +73,8 @@ struct loaded_l10nfile names. The return value is dynamically allocated and has to be freed by the caller. */ extern const char *_nl_normalize_codeset (const char *codeset, - size_t name_len); + size_t name_len) + attribute_hidden; /* Lookup a locale dependent file. *L10NFILE_LIST denotes a pool of lookup results of locale dependent @@ -95,13 +96,15 @@ _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_list, const char *language, const char *territory, const char *codeset, const char *normalized_codeset, const char *modifier, - const char *filename, int do_allocate); + const char *filename, int do_allocate) + attribute_hidden; /* Lookup the real locale name for a locale alias NAME, or NULL if NAME is not a locale alias (but possibly a real locale name). The return value is statically allocated and must not be freed. */ /* Part of the libintl ABI only for the sake of the gettext.m4 macro. */ -extern LIBINTL_DLL_EXPORTED const char *_nl_expand_alias (const char *name); +extern LIBINTL_DLL_EXPORTED const char *_nl_expand_alias (const char *name) + attribute_hidden; /* Split a locale name NAME into its pieces: language, modifier, territory, codeset. @@ -121,6 +124,7 @@ extern LIBINTL_DLL_EXPORTED const char *_nl_expand_alias (const char *name); extern int _nl_explode_name (char *name, const char **language, const char **modifier, const char **territory, const char **codeset, - const char **normalized_codeset); + const char **normalized_codeset) + attribute_hidden; #endif /* loadinfo.h */ |