debug.h 349 B

12345678910111213141516171819
  1. /*
  2. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  3. * See the copyright notice in the ACK home directory, in the file "Copyright".
  4. */
  5. /* $Id$ */
  6. #ifdef NDEBUG
  7. #define debug(s)
  8. #else
  9. extern int DEB;
  10. #define debug(s...) (DEB && printf(s))
  11. #endif
  12. extern int Verbose;
  13. #define verbose(s...) (Verbose && do_verbose(s))