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 /locale/coll-lookup.c | |
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 'locale/coll-lookup.c')
-rw-r--r-- | locale/coll-lookup.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/locale/coll-lookup.c b/locale/coll-lookup.c index a4deb9c0da..349265f041 100644 --- a/locale/coll-lookup.c +++ b/locale/coll-lookup.c @@ -20,7 +20,6 @@ /* Lookup in a table of int32_t, with default value 0. */ int32_t -internal_function __collidx_table_lookup (const char *table, uint32_t wc) { uint32_t shift1 = ((const uint32_t *) table)[0]; @@ -51,7 +50,6 @@ __collidx_table_lookup (const char *table, uint32_t wc) /* Lookup in a table of uint32_t, with default value 0xffffffff. */ uint32_t -internal_function __collseq_table_lookup (const char *table, uint32_t wc) { uint32_t shift1 = ((const uint32_t *) table)[0]; |