diff options
Diffstat (limited to 'gcc/fix-header.c')
-rw-r--r-- | gcc/fix-header.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/fix-header.c b/gcc/fix-header.c index c34d3c3..6ec7851 100644 --- a/gcc/fix-header.c +++ b/gcc/fix-header.c @@ -1355,11 +1355,11 @@ v_fatal (str, ap) } static void -fatal VPARAMS ((const char *str, ...)) +fatal (const char *str, ...) { - VA_OPEN (ap, str); - VA_FIXEDARG (ap, const char *, str); - + va_list ap; + + va_start (ap, str); v_fatal (str, ap); - VA_CLOSE (ap); + va_end (ap); } |