diff options
author | Calin Juravle <calin@google.com> | 2014-05-14 10:33:46 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-05-14 10:33:46 +0000 |
commit | a7318774061b508e7f769fb0e122cfb40cbb94c9 (patch) | |
tree | 0111090597ce2620d56977fbde43aad9c70563fd /libc/include | |
parent | fd3171b465184b8eac16dfc88b954b2d6748b2ce (diff) | |
parent | b55f2631dc89a386b3f6bd9ce6911c4c12e121b2 (diff) | |
download | bionic-a7318774061b508e7f769fb0e122cfb40cbb94c9.zip bionic-a7318774061b508e7f769fb0e122cfb40cbb94c9.tar.gz bionic-a7318774061b508e7f769fb0e122cfb40cbb94c9.tar.bz2 |
Merge "Change wctype_t from int to long."
Diffstat (limited to 'libc/include')
-rw-r--r-- | libc/include/wchar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/include/wchar.h b/libc/include/wchar.h index 5ef1cf1..af7593f 100644 --- a/libc/include/wchar.h +++ b/libc/include/wchar.h @@ -64,7 +64,7 @@ enum { WC_TYPE_MAX }; -typedef int wctype_t; +typedef long wctype_t; #define WEOF ((wint_t)(-1)) |