diff options
author | Dan Albert <danalbert@google.com> | 2014-08-14 13:56:51 -0700 |
---|---|---|
committer | Dan Albert <danalbert@google.com> | 2014-08-14 14:01:44 -0700 |
commit | bafee43161b9e38ca6c941eb3646df20ec6da759 (patch) | |
tree | 846f1638f9d5b45d21a809cf7a9adf8c5e258524 /libc/include | |
parent | 4bea4c631f747cc6b570ecd42c744a9b1103bf28 (diff) | |
download | bionic-bafee43161b9e38ca6c941eb3646df20ec6da759.zip bionic-bafee43161b9e38ca6c941eb3646df20ec6da759.tar.gz bionic-bafee43161b9e38ca6c941eb3646df20ec6da759.tar.bz2 |
Change name of MB_CUR_MAX implementation function.
Glibc calls theirs __ctype_get_mb_cur_max. Make ours match to cut down
on differences between bionic and glibc.
Bug: 11156955
Change-Id: Ib7231f01aa9676dff30aea0af25d597bfe07bc73
Diffstat (limited to 'libc/include')
-rw-r--r-- | libc/include/stdlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/include/stdlib.h b/libc/include/stdlib.h index a5eb3d1..52f71dd 100644 --- a/libc/include/stdlib.h +++ b/libc/include/stdlib.h @@ -161,8 +161,8 @@ extern int mbtowc(wchar_t *, const char *, size_t); extern int wctomb(char *, wchar_t); extern size_t wcstombs(char *, const wchar_t *, size_t); -extern size_t __mb_cur_max(void); -#define MB_CUR_MAX __mb_cur_max() +extern size_t __ctype_get_mb_cur_max(void); +#define MB_CUR_MAX __ctype_get_mb_cur_max() __END_DECLS |