21 lines
396 B
C
21 lines
396 B
C
/*
|
|
* (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 */
|
|
|
|
/* $Header$ */
|
|
|
|
#include "debugcst.h"
|
|
|
|
#ifdef DEBUG
|
|
#define DO_DEBUG(x, y) ((x) && (y))
|
|
#define STATIC
|
|
#else
|
|
#define DO_DEBUG(x, y)
|
|
#define STATIC static
|
|
#endif
|