The future passed part of <stdlib.h> by...

Bug: N/A
Test: builds
Change-Id: Ibac3c1abd82838dccd360cb70decb7083401c28e
This commit is contained in:
Elliott Hughes 2017-07-10 11:51:00 -07:00
parent 6c716a155d
commit 4cae5c374e

View file

@ -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