debug.h 392 B

1234567891011121314151617181920
  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. * Author: Ceriel J.H. Jacobs
  6. */
  7. /* D E B U G G I N G M A C R O */
  8. /* $Id$ */
  9. #include "debugcst.h"
  10. #ifdef DEBUG
  11. #define DO_DEBUG(x, y) ((x) && (y))
  12. #define STATIC
  13. #else
  14. #define DO_DEBUG(x, y)
  15. #define STATIC static
  16. #endif