summaryrefslogtreecommitdiffstats
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
commit5e119b86480e2db892953ec38a3d653c6e053fff (patch)
treecea4f2edc69af5c3a59a86c84674eaa1dc921064 /math.c
parent21d46d0d1076fca18315a9a27108f47034bc352b (diff)
downloadruby-5e119b86480e2db892953ec38a3d653c6e053fff.tar.gz
ruby-5e119b86480e2db892953ec38a3d653c6e053fff.tar.xz
ruby-5e119b86480e2db892953ec38a3d653c6e053fff.zip
should be HAVE_TANH
git-svn-id: http://svn.ruby-lang.org/repos/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 ba5a12128..d4a24d2b4 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;