pkgsrc-wip/gcc45/patches/patch-libiberty___doprnt.c
Kamil Rytarowski 39d28f7ddb Import gcc45-4.5.3nb8 as wip/gcc45.
This is the gcc 4.5 compiler suite.

This package has a test target. For testing (only), this
package requires devel/dejagnu and devel/autogen.
2016-12-22 15:00:27 +01:00

25 lines
614 B
C

$NetBSD: patch-libiberty___doprnt.c,v 1.1 2016/09/10 13:59:31 maya Exp $
use stdarg, not VA_* macros.
cherry picked necessary parts from
https://gcc.gnu.org/viewcvs/gcc?view=revision&revision=206881
fixes PR pkg/50042
--- libiberty/_doprnt.c.orig 2005-05-10 15:33:18.000000000 +0000
+++ libiberty/_doprnt.c
@@ -222,11 +222,11 @@ static int
checkit (const char* format, ...)
{
int result;
- VA_OPEN (args, format);
- VA_FIXEDARG (args, char *, format);
+ va_list args;
+ va_start (args, format);
result = _doprnt (format, args, stdout);
- VA_CLOSE (args);
+ va_end (args);
return result;
}