home *** CD-ROM | disk | FTP | other *** search
- /**
- GRAB Graph Layout and Browser System
-
- Copyright (c) 1989, Tera Computer Company
- **/
-
- #include <stream.h>
-
- extern "C" {
- void gc_init() ;
- char *gc_malloc(unsigned) ;
- }
-
- struct dummy_gc_init {
- dummy_gc_init() ;
- } do_init ;
-
- dummy_gc_init::dummy_gc_init() { gc_init() ; }
-
- void * _new (unsigned size) {
- cerr << "In gc new \n" ;
- return gc_malloc(size) ;
- }
-
- void _delete(void * p) { cerr << "In gc delete\n" ; }
-