f6c43b95ef
--HG-- branch : dtrg-buildsystem rename : lang/pc/build.mk => lang/m2/build.mk rename : lang/pc/libpc/build.mk => lang/m2/comp/build.mk rename : lang/pc/libpc/build.mk => lang/m2/libm2/build.mk
19 lines
369 B
C
19 lines
369 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$ */
|
|
|
|
#ifdef DEBUG
|
|
#define DO_DEBUG(x, y) ((x) && (y))
|
|
#define STATIC
|
|
#else
|
|
#define DO_DEBUG(x, y)
|
|
#define STATIC static
|
|
#endif
|