]> git.sesse.net Git - ffmpeg/blobdiff - compat/strtod.c
vc1: Use shuffled use_ic instead of equally shuffled mv_mode
[ffmpeg] / compat / strtod.c
index 7e979e8be62f8fd4565d2ee15db7b8f1538e43d1..258909f409017dfba3ab93310ee9c25b3df59bc0 100644 (file)
@@ -19,7 +19,6 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-#include <ctype.h>
 #include <limits.h>
 #include <stdlib.h>
 
@@ -49,7 +48,7 @@ double avpriv_strtod(const char *nptr, char **endptr)
     double res;
 
     /* Skip leading spaces */
-    while (isspace(*nptr))
+    while (av_isspace(*nptr))
         nptr++;
 
     if (!av_strncasecmp(nptr, "infinity", 8)) {