summaryrefslogtreecommitdiff
path: root/gcc/prefix.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/prefix.c')
-rwxr-xr-xgcc/prefix.c9
1 files changed, 0 insertions, 9 deletions
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;