]> git.sesse.net Git - vlc/commitdiff
Do not redefine strtof and atof for Android (the NDK headers are broken).
authorRémi Duraffort <ivoire@videolan.org>
Wed, 23 Feb 2011 20:46:39 +0000 (21:46 +0100)
committerRémi Duraffort <ivoire@videolan.org>
Wed, 23 Feb 2011 21:55:22 +0000 (22:55 +0100)
include/vlc_fixups.h

index f6ca7e88d35da514d411a45d8296f46639883127..19c1b88072b4a6dfa3e0fe9460788938abcf8af2 100644 (file)
@@ -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);