1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* numeric.c: add #include "interna.h" for rb_big_uminus() prototype.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31779 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagachika 2011-05-29 08:55:54 +00:00
parent a3ffe9698b
commit 4173fb0cb5
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Sun May 29 17:53:03 2011 CHIKANAGA Tomoyuki <nagachika00@gmail.com>
* numeric.c: add #include "interna.h" for rb_big_uminus() prototype.
Sun May 29 15:09:05 2011 Nobuyoshi Nakada <nobu@ruby-lang.org> Sun May 29 15:09:05 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
* numeric.c (flo_round): fix for negative value. * numeric.c (flo_round): fix for negative value.

View file

@ -12,6 +12,7 @@
#include "ruby/ruby.h" #include "ruby/ruby.h"
#include "ruby/encoding.h" #include "ruby/encoding.h"
#include "ruby/util.h" #include "ruby/util.h"
#include "internal.h"
#include <ctype.h> #include <ctype.h>
#include <math.h> #include <math.h>
#include <stdio.h> #include <stdio.h>