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