summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-09-26 09:11:47 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-09-26 09:11:47 +0000
commit2083a14586299df5967b19caaca972dc78e6b075 (patch)
tree9bfc18a61c12815e49b43762858714da7e1f9151
parent00d9f83647389e495029582e3d9259b59b7afad3 (diff)
downloadruby-2083a14586299df5967b19caaca972dc78e6b075.tar.gz
ruby-2083a14586299df5967b19caaca972dc78e6b075.tar.xz
ruby-2083a14586299df5967b19caaca972dc78e6b075.zip
eban
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--string.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index be6935c55..c11810b0e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Sep 26 18:09:51 2000 WATANABE Hirofumi <eban@ruby-lang.org>
+
+ * string.c: include <math.h>
+
Tue Sep 26 15:59:50 2000 Yukihiro Matsumoto <matz@ruby-lang.org>
* object.c (rb_mod_dup): metaclasses of class/module should not be
diff --git a/string.c b/string.c
index 5eb5d248e..40207e5ba 100644
--- a/string.c
+++ b/string.c
@@ -18,6 +18,7 @@
#define BEG(no) regs->beg[no]
#define END(no) regs->end[no]
+#include <math.h>
#include <ctype.h>
#ifdef HAVE_UNISTD_H