From 75ff61fd74b379f7278b1042e269ea3a6ee66518 Mon Sep 17 00:00:00 2001 From: YamaArashi Date: Tue, 16 Feb 2016 01:59:54 -0800 Subject: get rid of VA_START macro --- gcc/prefix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/prefix.c') diff --git a/gcc/prefix.c b/gcc/prefix.c index 4dd8799..0281a32 100755 --- a/gcc/prefix.c +++ b/gcc/prefix.c @@ -121,7 +121,7 @@ concat (const char *first, ...) /* First compute the size of the result and get sufficient memory. */ - VA_START (args, first); + va_start (args, first); arg = first; length = 0; @@ -137,7 +137,7 @@ concat (const char *first, ...) /* Now copy the individual pieces to the result string. */ - VA_START (args, first); + va_start (args, first); end = newstr; arg = first; -- cgit v1.2.3