check.h 521 B

1234567891011121314151617181920
  1. /* $Header$ */
  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(), calc_checksum(), check_work_empty();
  8. public started_working_on(), stopped_working_on();
  9. #else ifndef CHECK
  10. #define maldump(n) abort()
  11. #define check_mallinks(s) 0
  12. #define calc_checksum(ml) 0
  13. #define started_working_on(ml) 0
  14. #define stopped_working_on(ml) 0
  15. #define check_work_empty(s) 0
  16. #endif CHECK