summaryrefslogtreecommitdiff
path: root/gcc/prefix.c
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-02-16 01:27:33 -0800
committerYamaArashi <shadow962@live.com>2016-02-16 01:27:33 -0800
commitbbe0e72828710bb413ce01e22173adcc761ec7f8 (patch)
tree30ba7dc9393ebc3a971200ec612debbc8c029da9 /gcc/prefix.c
parentecae31d652106c1f3b7429570de013c3bbf33e7a (diff)
remove ANSI_PROTOTYPES ifdefs
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;