home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / contrib / edb / gc-inc < prev    next >
Text File  |  1999-06-05  |  216b  |  8 lines

  1. #include <gc.h>
  2. #define malloc(n) GC_malloc(n)
  3. #define calloc(m,n) GC_malloc((m)*(n))
  4. #define realloc(p,n) GC_realloc((p),(n))
  5. #define free(p) GC_free(p)
  6. #define gc_is_off GC_dont_gc
  7. #define gc_start() GC_gcollect()
  8.