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/cpplib.c | |
parent | bbe0e72828710bb413ce01e22173adcc761ec7f8 (diff) |
get rid of VA_START macro
Diffstat (limited to 'gcc/cpplib.c')
-rwxr-xr-x | gcc/cpplib.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/cpplib.c b/gcc/cpplib.c index 914912d..aafc737 100755 --- a/gcc/cpplib.c +++ b/gcc/cpplib.c @@ -6252,7 +6252,7 @@ cpp_error (cpp_reader * pfile, const char *msg, ...) { va_list ap; - VA_START(ap, msg); + va_start(ap, msg); v_cpp_error (pfile, msg, ap); @@ -6283,7 +6283,7 @@ cpp_warning (cpp_reader * pfile, const char *msg, ...) { va_list ap; - VA_START (ap, msg); + va_start (ap, msg); v_cpp_warning (pfile, msg, ap); @@ -6297,7 +6297,7 @@ cpp_pedwarn (cpp_reader * pfile, const char *msg, ...) { va_list ap; - VA_START (ap, msg); + va_start (ap, msg); if (CPP_OPTIONS (pfile)->pedantic_errors) @@ -6330,7 +6330,7 @@ cpp_error_with_line (cpp_reader * pfile, int line, int column, const char *msg, { va_list ap; - VA_START (ap, msg); + va_start (ap, msg); v_cpp_error_with_line(pfile, line, column, msg, ap); @@ -6369,7 +6369,7 @@ cpp_warning_with_line (cpp_reader * pfile, int line, int column, const char *msg { va_list ap; - VA_START (ap, msg); + va_start (ap, msg); v_cpp_warning_with_line (pfile, line, column, msg, ap); @@ -6382,7 +6382,7 @@ cpp_pedwarn_with_line (cpp_reader * pfile, int line, int column, const char *msg { va_list ap; - VA_START (ap, msg); + va_start (ap, msg); if (CPP_OPTIONS (pfile)->pedantic_errors) @@ -6400,7 +6400,7 @@ cpp_pedwarn_with_file_and_line (cpp_reader *pfile, char *file, int line, const c { va_list ap; - VA_START (ap, msg); + va_start (ap, msg); if (!CPP_OPTIONS (pfile)->pedantic_errors |