aboutsummaryrefslogtreecommitdiffstats
path: root/include/ruby/defines.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ruby/defines.h')
-rw-r--r--include/ruby/defines.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/include/ruby/defines.h b/include/ruby/defines.h
index 3327e69123..1c07ac07e8 100644
--- a/include/ruby/defines.h
+++ b/include/ruby/defines.h
@@ -144,13 +144,7 @@ void xfree(void*);
#endif
#ifndef BDIGIT
-# if defined(HAVE_INT64_T) && defined(HAVE_INT128_T)
-# define BDIGIT uint64_t
-# define SIZEOF_BDIGITS SIZEOF_INT64_T
-# define BDIGIT_DBL uint128_t
-# define BDIGIT_DBL_SIGNED int128_t
-# define PRI_BDIGIT_PREFIX PRI_64_PREFIX
-# elif SIZEOF_INT*2 <= SIZEOF_LONG_LONG
+# if SIZEOF_INT*2 <= SIZEOF_LONG_LONG
# define BDIGIT unsigned int
# define SIZEOF_BDIGITS SIZEOF_INT
# define BDIGIT_DBL unsigned LONG_LONG