diff options
Diffstat (limited to 'locale')
-rw-r--r-- | locale/coll-lookup.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/locale/coll-lookup.h b/locale/coll-lookup.h index d1c488dcf5..9e20d39329 100644 --- a/locale/coll-lookup.h +++ b/locale/coll-lookup.h @@ -19,7 +19,9 @@ #include <stdint.h> /* Lookup in a table of int32_t, with default value 0. */ -extern int32_t __collidx_table_lookup (const char *table, uint32_t wc); +extern int32_t __collidx_table_lookup (const char *table, uint32_t wc) + attribute_hidden; /* Lookup in a table of uint32_t, with default value 0xffffffff. */ -extern uint32_t __collseq_table_lookup (const char *table, uint32_t wc); +extern uint32_t __collseq_table_lookup (const char *table, uint32_t wc) + attribute_hidden; |