diff options
author | Elliott Hughes <enh@google.com> | 2019-12-23 03:26:37 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2019-12-23 03:26:37 +0000 |
commit | 5e2ac29165a5ecdff9be1e8b3aa0c0f968abf539 (patch) | |
tree | cd633b203cc758ce1d4fcf95330d47166ed8250c /libc/include/string.h | |
parent | 8cdacf9760ed7d4a5b3218f0342344261ab6f8aa (diff) | |
parent | 95c6cd753f028b1afc0c6a800a3dd6bd85a5a6a0 (diff) |
Merge "Stop using the __ANDROID_API_x__ constants."
Diffstat (limited to 'libc/include/string.h')
-rw-r--r-- | libc/include/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/include/string.h b/libc/include/string.h index 25f6673a9..0cc5611aa 100644 --- a/libc/include/string.h +++ b/libc/include/string.h @@ -119,7 +119,7 @@ char* strsignal(int __signal); int strcoll(const char* __lhs, const char* __rhs) __attribute_pure__; size_t strxfrm(char* __dst, const char* __src, size_t __n); -#if __ANDROID_API__ >= __ANDROID_API_L__ +#if __ANDROID_API__ >= 21 int strcoll_l(const char* __lhs, const char* __rhs, locale_t __l) __attribute_pure__ __INTRODUCED_IN(21); size_t strxfrm_l(char* __dst, const char* __src, size_t __n, locale_t __l) __INTRODUCED_IN(21); #else |