ack/lang/m2/comp/debug.h

19 lines
369 B
C
Raw Normal View History

/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*
* Author: Ceriel J.H. Jacobs
*/
/* D E B U G G I N G M A C R O */
1994-06-24 14:02:31 +00:00
/* $Id$ */
1986-11-05 14:33:00 +00:00
#ifdef DEBUG
#define DO_DEBUG(x, y) ((x) && (y))
#define STATIC
1986-11-05 14:33:00 +00:00
#else
#define DO_DEBUG(x, y)
#define STATIC static
1986-11-05 14:33:00 +00:00
#endif