From c25084921670dfe33a0871ee7b94c102fea0ea3a Mon Sep 17 00:00:00 2001 From: matz Date: Thu, 14 May 1998 04:10:39 +0000 Subject: prototypes git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@210 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- array.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'array.c') diff --git a/array.c b/array.c index 61b6344b4e..81b422a53b 100644 --- a/array.c +++ b/array.c @@ -81,7 +81,7 @@ ary_new() return ary_new2(ARY_DEFAULT_SIZE); } -#ifdef __STDC__ +#ifdef HAVE_STDARG_PROTOTYPES #include #define va_init_list(a,b) va_start(a,b) #else @@ -90,7 +90,7 @@ ary_new() #endif VALUE -#ifdef __STDC__ +#ifdef HAVE_STDARG_PROTOTYPES ary_new3(int n, ...) #else ary_new3(n, va_alist) -- cgit v1.2.3