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

Do not redefine strtof and atof for Android (the NDK headers are broken).

parent 8d10ff29
......@@ -94,12 +94,16 @@ size_t strlcpy (char *, const char *, size_t);
#endif
#ifndef HAVE_STRTOF
#ifndef HAVE_ANDROID
float strtof (const char *, char **);
#endif
#endif
#ifndef HAVE_ATOF
#ifndef HAVE_ANDROID
double atof (const char *);
#endif
#endif
#ifndef HAVE_STRTOLL
long long int strtoll (const char *, char **, int);
......
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