mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-18 01:08:16 +00:00
fix build failure after commit 2a8d00634d
if strtod isn't available.
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user