summaryrefslogtreecommitdiff
path: root/math.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-04-11 11:39:25 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-04-11 11:39:25 +0000
commit1aa67cb1d357af287d9ea7e764ca3c2bae2f56a8 (patch)
treecea4f2edc69af5c3a59a86c84674eaa1dc921064 /math.c
parent07c69983ac1cffb1e26f8db7c7d284428089ef56 (diff)
should be HAVE_TANH
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2367 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'math.c')
-rw-r--r--math.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/math.c b/math.c
index ba5a12128a..d4a24d2b45 100644
--- a/math.c
+++ b/math.c
@@ -122,7 +122,7 @@ math_sinh(obj, x)
return rb_float_new(sinh(RFLOAT(x)->value));
}
-#ifndef HAVE_SINH
+#ifndef HAVE_TANH
double
tanh(x)
double x;