]> git.sesse.net Git - vlc/commitdiff
Use __ANDROID__ instead of home defined HAVE_ANDROID.
authorRémi Duraffort <ivoire@videolan.org>
Mon, 28 Feb 2011 18:14:57 +0000 (19:14 +0100)
committerRémi Duraffort <ivoire@videolan.org>
Mon, 28 Feb 2011 18:14:57 +0000 (19:14 +0100)
include/vlc_fixups.h

index 19c1b88072b4a6dfa3e0fe9460788938abcf8af2..4f96d09831deb63c22a9e7f1957e302490361899 100644 (file)
@@ -94,13 +94,13 @@ size_t strlcpy (char *, const char *, size_t);
 #endif
 
 #ifndef HAVE_STRTOF
-#ifndef HAVE_ANDROID
+#ifndef __ANDROID__
 float strtof (const char *, char **);
 #endif
 #endif
 
 #ifndef HAVE_ATOF
-#ifndef HAVE_ANDROID
+#ifndef __ANDROID__
 double atof (const char *);
 #endif
 #endif