Alien-SDL
view release on metacpan or search on metacpan
patches/SDL-1.2.14-configure view on Meta::CPAN
char *term;
double value;
value = strtod (string, &term);
if (value != 69 || term != (string + 4))
return 1;
}
{
/* Under Solaris 2.4, strtod returns the wrong value for the
terminating character under some conditions. */
char *string = "NaN";
char *term;
strtod (string, &term);
if (term != string && *(term - 1) == 0)
return 1;
}
return 0;
}
_ACEOF
if ac_fn_c_try_run "$LINENO"; then :
( run in 0.289 second using v1.01-cache-2.11-cpan-4d50c553e7e )