diff options
author | Dan Albert <danalbert@google.com> | 2014-09-24 16:00:06 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-09-24 16:00:07 +0000 |
commit | fc5a93f7a2ea2be740f2c909e8a6a192fa65adc8 (patch) | |
tree | 9c9f2068825c2f4ece4944373efb3ebb84109ace /libc/include/stdlib.h | |
parent | ebf37e38861e376ae47c72d45ab8de6703dd18f0 (diff) | |
parent | 3c5037f1b3b747e79d17a5f717d9f9c365132d33 (diff) | |
download | android_bionic-fc5a93f7a2ea2be740f2c909e8a6a192fa65adc8.tar.gz android_bionic-fc5a93f7a2ea2be740f2c909e8a6a192fa65adc8.tar.bz2 android_bionic-fc5a93f7a2ea2be740f2c909e8a6a192fa65adc8.zip |
Merge "Fix incorrect parameter types for locale funcs."
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 80a65789c..fd2bf6c57 100644 --- a/libc/include/stdlib.h +++ b/libc/include/stdlib.h @@ -83,8 +83,8 @@ extern float strtof(const char*, char**) __LIBC_ABI_PUBLIC__; extern long double strtold(const char*, char**) __LIBC_ABI_PUBLIC__; extern long double strtold_l(const char *, char **, locale_t) __LIBC_ABI_PUBLIC__; -extern long long strtoll_l(const char *, char **, size_t, locale_t) __LIBC_ABI_PUBLIC__; -extern unsigned long long strtoull_l(const char *, char **, size_t, locale_t) __LIBC_ABI_PUBLIC__; +extern long long strtoll_l(const char *, char **, int, locale_t) __LIBC_ABI_PUBLIC__; +extern unsigned long long strtoull_l(const char *, char **, int, locale_t) __LIBC_ABI_PUBLIC__; extern int atoi(const char*) __purefunc; extern long atol(const char*) __purefunc; |