diff options
author | Dan Albert <danalbert@google.com> | 2014-07-09 22:50:43 +0000 |
---|---|---|
committer | Dan Albert <danalbert@google.com> | 2014-07-09 22:50:43 +0000 |
commit | 063e20c26943ec82ef1d53a544545e79054e93d3 (patch) | |
tree | 486076b9e0dd6439cea5f0108ecf6154df6e4aab /libc/include/stdlib.h | |
parent | e087eac404b0e30de427392065e2750acf92bd4a (diff) | |
download | android_bionic-063e20c26943ec82ef1d53a544545e79054e93d3.tar.gz android_bionic-063e20c26943ec82ef1d53a544545e79054e93d3.tar.bz2 android_bionic-063e20c26943ec82ef1d53a544545e79054e93d3.zip |
Revert "Add locale aware APIs."
Accidentally verified against a dirty tree. Needs the companion change to libc++ to land upstream before I can submit this.
This reverts commit e087eac404b0e30de427392065e2750acf92bd4a.
Change-Id: I317ecd0923114f415eaad7603002f77feffb5e3f
Diffstat (limited to 'libc/include/stdlib.h')
-rw-r--r-- | libc/include/stdlib.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libc/include/stdlib.h b/libc/include/stdlib.h index 0dac6506a..62b7a67b8 100644 --- a/libc/include/stdlib.h +++ b/libc/include/stdlib.h @@ -75,10 +75,6 @@ extern double strtod(const char*, char**) __LIBC_ABI_PUBLIC__; 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 int atoi(const char*) __purefunc; extern long atol(const char*) __purefunc; extern long long atoll(const char*) __purefunc; |