diff options
author | Dan Albert <danalbert@google.com> | 2014-08-14 13:56:51 -0700 |
---|---|---|
committer | Dan Albert <danalbert@google.com> | 2014-08-14 13:56:51 -0700 |
commit | 224ff048efc782bd60047a3ae53eb66941f73125 (patch) | |
tree | 7c148e8f2e8095a98fa9cc24e710edc3ccf5d008 /libc/include/stdlib.h | |
parent | 9a74e4c15c17b9126ad348d865002880fc36bd12 (diff) | |
download | android_bionic-224ff048efc782bd60047a3ae53eb66941f73125.tar.gz android_bionic-224ff048efc782bd60047a3ae53eb66941f73125.tar.bz2 android_bionic-224ff048efc782bd60047a3ae53eb66941f73125.zip |
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/stdlib.h')
-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 a5eb3d15b..52f71dd47 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 |