switch to stdarg.h
This commit is contained in:
parent
0ecd0f363b
commit
fa40b3f447
@ -1,7 +1,13 @@
|
||||
$OpenBSD: patch-debug_c,v 1.1 2003/08/24 22:15:56 naddy Exp $
|
||||
$OpenBSD: patch-debug_c,v 1.2 2003/12/29 21:38:34 espie Exp $
|
||||
--- debug.c.orig 1993-01-12 19:59:35.000000000 +0100
|
||||
+++ debug.c 2003-08-24 23:07:38.000000000 +0200
|
||||
@@ -20,6 +20,10 @@
|
||||
+++ debug.c 2003-12-29 22:34:24.000000000 +0100
|
||||
@@ -15,28 +15,29 @@
|
||||
|
||||
# include <X11/Intrinsic.h>
|
||||
|
||||
-# include <varargs.h>
|
||||
+# include <stdarg.h>
|
||||
# include <stdio.h>
|
||||
|
||||
# include "debug.h"
|
||||
|
||||
@ -11,13 +17,24 @@ $OpenBSD: patch-debug_c,v 1.1 2003/08/24 22:15:56 naddy Exp $
|
||||
+
|
||||
/* VARARGS */
|
||||
void
|
||||
debug_printf(va_alist)
|
||||
@@ -33,7 +37,7 @@ debug_printf(va_alist)
|
||||
-debug_printf(va_alist)
|
||||
- va_dcl
|
||||
+debug_printf(int p, const char *fmt, ...)
|
||||
{
|
||||
va_list args;
|
||||
- char *fmt;
|
||||
|
||||
- va_start(args);
|
||||
|
||||
/*
|
||||
* first arg is whether or not to print.
|
||||
*/
|
||||
- if ((va_arg(args, int) == 0) || (debug == False))
|
||||
+ if ((va_arg(args, int) == 0) || (app_data.debug == False))
|
||||
+ if ((p == 0) || (app_data.debug == False))
|
||||
return;
|
||||
|
||||
fmt = va_arg(args, char *);
|
||||
- fmt = va_arg(args, char *);
|
||||
+ va_start(args, fmt);
|
||||
vfprintf(stdout, fmt, args);
|
||||
|
||||
fflush(stdout);
|
||||
|
Loading…
x
Reference in New Issue
Block a user