diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2017-07-11 18:54:24 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-07-11 18:54:24 +0000 |
commit | 61fcd39e1720df131e2a7a7c4075f344bb413ca1 (patch) | |
tree | 7739695d551d6e87df7c650e47b2ef827ee06ca1 | |
parent | fc544af6cb538c5a6916f9ebf5b02639383fb1f3 (diff) | |
parent | 4cae5c374e6432f5fb4e7ec6d7e09228c3426e27 (diff) |
Merge "The future passed part of <stdlib.h> by..."
-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 3cd8ad1b5..24ddd99e2 100644 --- a/libc/include/stdlib.h +++ b/libc/include/stdlib.h @@ -225,12 +225,12 @@ long double strtold_l(const char*, char**, locale_t) __INTRODUCED_IN(21); // Implemented as static inlines before 21. #endif -#if __ANDROID_API__ >= __ANDROID_API_FUTURE__ +#if __ANDROID_API__ >= __ANDROID_API_O__ double strtod_l(const char*, char**, locale_t) __INTRODUCED_IN(26); float strtof_l(const char*, char**, locale_t) __INTRODUCED_IN(26); long strtol_l(const char*, char**, int, locale_t) __INTRODUCED_IN(26); #else -// Implemented as static inlines. +// Implemented as static inlines before 26. #endif __END_DECLS |