aboutsummaryrefslogtreecommitdiffstats
path: root/win32
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2020-12-12 16:01:10 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2020-12-12 17:02:42 +0900
commit21c5726418136d6efa98cbf205860a8bee328907 (patch)
tree9a3e16b98842197e57864b1950d79c93d23348ea /win32
parente53c0bc906c514ca6f0d40e2140dee1e23b4591e (diff)
downloadruby-21c5726418136d6efa98cbf205860a8bee328907.tar.gz
Omit checks for C89 standard or later
Now we require C99, these features available of course. * prototypes * stdarg prototypes * token pasting * stringization * string literal concatenation
Diffstat (limited to 'win32')
-rw-r--r--win32/Makefile.sub3
1 files changed, 0 insertions, 3 deletions
diff --git a/win32/Makefile.sub b/win32/Makefile.sub
index 9686d1caaa..71565f0b71 100644
--- a/win32/Makefile.sub
+++ b/win32/Makefile.sub
@@ -680,9 +680,6 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/win32/Makefile.sub $(win_srcdir)/Makefile.sub
!if $(MSC_VER) < 1400
#define SIZE_MAX UINT_MAX
!endif
-#define HAVE_PROTOTYPES 1
-#define TOKEN_PASTE(x,y) x##y
-#define HAVE_STDARG_PROTOTYPES 1
!if $(MSC_VER) >= 1800
#define HAVE_VA_COPY 1
!else