Commit ed491497 authored by Rémi Duraffort's avatar Rémi Duraffort

Use __ANDROID__ instead of home defined HAVE_ANDROID.

parent 7d28a8de
...@@ -94,13 +94,13 @@ size_t strlcpy (char *, const char *, size_t); ...@@ -94,13 +94,13 @@ size_t strlcpy (char *, const char *, size_t);
#endif #endif
#ifndef HAVE_STRTOF #ifndef HAVE_STRTOF
#ifndef HAVE_ANDROID #ifndef __ANDROID__
float strtof (const char *, char **); float strtof (const char *, char **);
#endif #endif
#endif #endif
#ifndef HAVE_ATOF #ifndef HAVE_ATOF
#ifndef HAVE_ANDROID #ifndef __ANDROID__
double atof (const char *); double atof (const char *);
#endif #endif
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment