blob: 0ed7ea36c96f20edb956dd0c39b1db97fb06f14f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
--- debug.c.orig 1993-01-12 18:59:35 UTC
+++ debug.c
@@ -15,28 +15,29 @@
# include <X11/Intrinsic.h>
-# include <varargs.h>
+# include <stdarg.h>
# include <stdio.h>
# include "debug.h"
+#include "app.h"
+
+extern AppData app_data;
+
/* VARARGS */
void
-debug_printf(va_alist)
- va_dcl
+debug_printf(int flag, char *fmt, ...)
{
va_list args;
- char *fmt;
- va_start(args);
+ va_start(args, fmt);
/*
* first arg is whether or not to print.
*/
- if ((va_arg(args, int) == 0) || (debug == False))
+ if ((flag == 0) || (app_data.debug == False))
return;
- fmt = va_arg(args, char *);
vfprintf(stdout, fmt, args);
fflush(stdout);
|