diff options
author | Elliott Hughes <enh@google.com> | 2014-06-06 15:20:50 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-06-06 15:20:50 -0700 |
commit | f6b1d439ccbc34f8dec0d0c949f566f82786fa5b (patch) | |
tree | 1b3dd057f1690e62d282c41051447046ba30ee4d /libc/tools | |
parent | 3e0e7eea490d2080d0290a1e2709e98d8fcf0ebf (diff) | |
download | bionic-f6b1d439ccbc34f8dec0d0c949f566f82786fa5b.zip bionic-f6b1d439ccbc34f8dec0d0c949f566f82786fa5b.tar.gz bionic-f6b1d439ccbc34f8dec0d0c949f566f82786fa5b.tar.bz2 |
Add a few more C11 functions to the whitelist.
Change-Id: Ie2e767910d7cc8a78c05e29960cf4ab52a59fe9d
Diffstat (limited to 'libc/tools')
-rwxr-xr-x | libc/tools/check-symbols-glibc.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libc/tools/check-symbols-glibc.py b/libc/tools/check-symbols-glibc.py index 913b20b..d0e00f3 100755 --- a/libc/tools/check-symbols-glibc.py +++ b/libc/tools/check-symbols-glibc.py @@ -96,7 +96,11 @@ linux_stuff = set([ ]) # Some standard stuff isn't yet in the versions of glibc we're using. std_stuff = set([ - 'at_quick_exit' + 'at_quick_exit', + 'c16rtomb', + 'c32rtomb', + 'mbrtoc16', + 'mbrtoc32', ]) # These have mangled names in glibc, with a macro taking the "obvious" name. weird_stuff = set([ |