fix build failure after commit 2a8d00634d
if strtod isn't available.
parent
2a8d00634d
commit
887ae0c6eb
|
@ -53,7 +53,7 @@ static unsigned UTF8_TrailingBytes(unsigned char c)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if !defined(HAVE_VSSCANF) || !defined(HAVE_STRTOL)
|
#if !defined(HAVE_VSSCANF) || !defined(HAVE_STRTOL) || !defined(HAVE_STRTOD)
|
||||||
static size_t
|
static size_t
|
||||||
SDL_ScanLong(const char *text, int count, int radix, long *valuep)
|
SDL_ScanLong(const char *text, int count, int radix, long *valuep)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue