debug.h 133 B

12345678910
  1. /* A debugging macro
  2. */
  3. #include "debugcst.h"
  4. #ifdef DEBUG
  5. #define DO_DEBUG(x, y) ((x) && (y))
  6. #else
  7. #define DO_DEBUG(x, y)
  8. #endif