summaryrefslogtreecommitdiff
path: root/bignum.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-05-18 04:56:27 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-05-18 04:56:27 +0000
commit32dc42cf1a248821df7594047bd3fd7822622b32 (patch)
treeb44992897e705edbaec22a2c5e4aee402c5d5177 /bignum.c
parentec6b316cf26eae7eb36e3f9bce24110319e33e35 (diff)
*** empty log message ***
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@215 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bignum.c b/bignum.c
index cce23273a4..fbf5543fb3 100644
--- a/bignum.c
+++ b/bignum.c
@@ -9,8 +9,8 @@
************************************************/
#include "ruby.h"
-#include <ctype.h>
#include <math.h>
+#include <ctype.h>
extern VALUE cInteger;
VALUE cBignum;
@@ -175,7 +175,7 @@ str2inum(str, base)
VALUE z;
USHORT *zds;
- while (isspace(*str)) str++;
+ while (ISSPACE(*str)) str++;
if (*str == '-') {
str++;
sign = 0;
@@ -1108,7 +1108,7 @@ big_xor(x, y)
return bignorm(z);
}
-static VALUE big_rshift();
+static VALUE big_rshift _((VALUE,VALUE));
VALUE
big_lshift(x, y)