ack/util/led/debug.h
Manoel Trapier 452127650a Next batch
2015-06-24 23:41:45 +01:00

20 lines
349 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".
*/
/* $Id$ */
#ifdef NDEBUG
#define debug(s)
#else
extern int DEB;
#define debug(s...) (DEB && printf(s))
#endif
extern int Verbose;
#define verbose(s...) (Verbose && do_verbose(s))