aboutsummaryrefslogtreecommitdiffstats
path: root/missing
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-20 04:18:09 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-01-20 04:18:09 +0000
commitb679da68fbdf4b364e9b16a0549d18299267b144 (patch)
treeae5236a60a03fd1c0ebf4c04ddef0540371d48e0 /missing
parenta91825967fc7a2fe2c9d2df3de5fe4455835ec9f (diff)
downloadruby-b679da68fbdf4b364e9b16a0549d18299267b144.tar.gz
[ci skip] tabify
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61972 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'missing')
-rw-r--r--missing/nan.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/missing/nan.c b/missing/nan.c
index 507cc586d2..686c48a336 100644
--- a/missing/nan.c
+++ b/missing/nan.c
@@ -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;
}
}