check.h 595 B

123456789101112131415161718192021
  1. /* $Id$ */
  2. /*
  3. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  4. * See the copyright notice in the ACK home directory, in the file "Copyright".
  5. */
  6. #ifdef CHECK
  7. public check_mallinks(const char *s), calc_checksum(mallink *ml);
  8. public check_work_empty(const char *s);
  9. public started_working_on(mallink *ml), stopped_working_on(mallink *ml);
  10. #else /* ifndef CHECK */
  11. #define maldump(n) abort()
  12. #define check_mallinks(s) 0
  13. #define calc_checksum(ml) 0
  14. #define started_working_on(ml) 0
  15. #define stopped_working_on(ml) 0
  16. #define check_work_empty(s) 0
  17. #endif /* CHECK */