aboutsummaryrefslogtreecommitdiffstats
path: root/include/ruby/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ruby/util.h')
-rw-r--r--include/ruby/util.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/include/ruby/util.h b/include/ruby/util.h
index 3b78e467b4..db2bc3e32d 100644
--- a/include/ruby/util.h
+++ b/include/ruby/util.h
@@ -24,27 +24,6 @@ extern "C" {
#include RUBY_EXTCONF_H
#endif
-#ifndef _
-#ifdef __cplusplus
-# ifndef HAVE_PROTOTYPES
-# define HAVE_PROTOTYPES 1
-# endif
-# ifndef HAVE_STDARG_PROTOTYPES
-# define HAVE_STDARG_PROTOTYPES 1
-# endif
-#endif
-#ifdef HAVE_PROTOTYPES
-# define _(args) args
-#else
-# define _(args) ()
-#endif
-#ifdef HAVE_STDARG_PROTOTYPES
-# define __(args) args
-#else
-# define __(args) ()
-#endif
-#endif
-
RUBY_SYMBOL_EXPORT_BEGIN
#define DECIMAL_SIZE_OF_BITS(n) (((n) * 3010 + 9998) / 9999)