fix build failure after commit 2a8d00634d if strtod isn't available.

This commit is contained in:
Ozkan Sezer 2022-09-20 18:20:00 +03:00
parent 2a8d00634d
commit 887ae0c6eb

View file

@ -53,7 +53,7 @@ static unsigned UTF8_TrailingBytes(unsigned char c)
return 0;
}
#if !defined(HAVE_VSSCANF) || !defined(HAVE_STRTOL)
#if !defined(HAVE_VSSCANF) || !defined(HAVE_STRTOL) || !defined(HAVE_STRTOD)
static size_t
SDL_ScanLong(const char *text, int count, int radix, long *valuep)
{