diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-17 17:06:51 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-17 17:06:51 +0000 |
commit | 91cff0fdf866faf3f1a84db17b50e38845631f14 (patch) | |
tree | 79a988274aa8441f940fbf1846f4549cee688891 | |
parent | 2bf5b26e1cd859a2521001e26666fd2fda679794 (diff) | |
download | ruby-91cff0fdf866faf3f1a84db17b50e38845631f14.tar.gz ruby-91cff0fdf866faf3f1a84db17b50e38845631f14.tar.xz ruby-91cff0fdf866faf3f1a84db17b50e38845631f14.zip |
* vm_insnhelper.c: math.h for isnan.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15095 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | vm_insnhelper.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c index 12cc6278a..6e0d8f30c 100644 --- a/vm_insnhelper.c +++ b/vm_insnhelper.c @@ -11,6 +11,8 @@ /* finish iseq array */ #include "insns.inc" +#include <math.h> + /* control stack frame */ |