Pristine Ack-5.5
[Ack-5.5.git] / util / led / debug.h
1 /*
2  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
3  * See the copyright notice in the ACK home directory, in the file "Copyright".
4  */
5 /* $Id: debug.h,v 3.3 1994/06/24 10:34:32 ceriel Exp $ */
6
7 #ifdef NDEBUG
8
9 #define debug(s, a1, a2, a3, a4)
10
11 #else
12 extern int DEB;
13
14 #define debug(s, a1, a2, a3, a4)        (DEB && printf(s, a1, a2, a3, a4))
15
16 #endif
17
18 extern int Verbose;
19 #define verbose(s, a1, a2, a3, a4)      (Verbose && do_verbose(s, a1, a2, a3, a4))