mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[ci skip] tabify
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61972 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
782236e3bd
commit
4680cecd57
1 changed files with 4 additions and 4 deletions
|
@ -11,18 +11,18 @@ nan(const char *spec)
|
|||
* necessary. Please write a proper implementation that
|
||||
* covers this branch. */
|
||||
if (spec && spec[0]) {
|
||||
double generated_nan;
|
||||
double generated_nan;
|
||||
int len = snprintf(NULL, 0, "NAN(%s)", spec);
|
||||
char *buf = malloc(len + 1); /* +1 for NUL */
|
||||
sprintf(buf, "NAN(%s)", spec);
|
||||
generated_nan = strtod(buf, NULL);
|
||||
free(buf);
|
||||
return generated_nan;
|
||||
return generated_nan;
|
||||
}
|
||||
else
|
||||
#endif
|
||||
{
|
||||
assert(!spec || !spec[0]);
|
||||
return (double)NAN;
|
||||
assert(!spec || !spec[0]);
|
||||
return (double)NAN;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue