diff options
author | YamaArashi <shadow962@live.com> | 2016-02-16 01:59:54 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-16 01:59:54 -0800 |
commit | 75ff61fd74b379f7278b1042e269ea3a6ee66518 (patch) | |
tree | e7476ce3b6211abd2ed93d60c544e047abb24ec4 /gcc/prefix.c | |
parent | bbe0e72828710bb413ce01e22173adcc761ec7f8 (diff) |
get rid of VA_START macro
Diffstat (limited to 'gcc/prefix.c')
-rwxr-xr-x | gcc/prefix.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |