check_heap.h 289 B

12345678910111213141516
  1. /*
  2. * Part of Scheme 48 1.9. See file COPYING for notices and license.
  3. *
  4. * Authors: David Frese
  5. */
  6. #ifndef __S48_GC_CHECK_HEAP_H
  7. #define __S48_GC_CHECK_HEAP_H
  8. #include "scheme48.h"
  9. extern char s48_check_heap(long error_count);
  10. extern char s48_stob_in_heapP(s48_value stob);
  11. #endif