From bbe0e72828710bb413ce01e22173adcc761ec7f8 Mon Sep 17 00:00:00 2001 From: YamaArashi Date: Tue, 16 Feb 2016 01:27:33 -0800 Subject: remove ANSI_PROTOTYPES ifdefs --- gcc/prefix.c | 9 --------- 1 file changed, 9 deletions(-) (limited to 'gcc/prefix.c') diff --git a/gcc/prefix.c b/gcc/prefix.c index 68875da..4dd8799 100755 --- a/gcc/prefix.c +++ b/gcc/prefix.c @@ -118,16 +118,10 @@ concat (const char *first, ...) register char *end; register const char *arg; va_list args; -#ifndef ANSI_PROTOTYPES - const char *first; -#endif /* First compute the size of the result and get sufficient memory. */ VA_START (args, first); -#ifndef ANSI_PROTOTYPES - first = va_arg (args, const char *); -#endif arg = first; length = 0; @@ -144,9 +138,6 @@ concat (const char *first, ...) /* Now copy the individual pieces to the result string. */ VA_START (args, first); -#ifndef ANSI_PROTOTYPES - first = va_arg (args, char *); -#endif end = newstr; arg = first; -- cgit v1.2.3