Pristine Ack-5.5
[Ack-5.5.git] / lang / m2 / comp / 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  * Author: Ceriel J.H. Jacobs
6  */
7
8 /* D E B U G G I N G   M A C R O */
9
10 /* $Id: debug.h,v 1.4 1994/06/24 12:40:14 ceriel Exp $ */
11
12 #include "debugcst.h"
13
14 #ifdef DEBUG
15 #define DO_DEBUG(x, y)  ((x) && (y))
16 #define STATIC
17 #else
18 #define DO_DEBUG(x, y)
19 #define STATIC static
20 #endif