aboutsummaryrefslogtreecommitdiffstats
path: root/bignum.c
diff options
context:
space:
mode:
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/bignum.c b/bignum.c
index 472126f548..3ea2c4a4c3 100644
--- a/bignum.c
+++ b/bignum.c
@@ -3751,9 +3751,6 @@ rb_cstr_to_inum(const char *str, int base, int badcheck)
size_t num_digits;
size_t num_bdigits;
-#undef ISDIGIT
-#define ISDIGIT(c) ('0' <= (c) && (c) <= '9')
-
if (!str) {
if (badcheck) goto bad;
return INT2FIX(0);