/* $OpenXM: OpenXM/src/kan96xx/Kan/nogc.c,v 1.3 2001/05/04 01:06:24 takayama Exp $ */ #include static long Total = 0; void *GC_malloc(n) int n; { void *p; p = (void *)calloc(n,1); /* clear the memory */ Total += n; if (p == (void *)NULL) { fprintf(stderr,"\nNo more memory. We have allocated %ld bytes of the memory.\n",Total); return(p); } return(p); } void *GC_realloc(void *p,int n) { void *p; p = (void *)realloc(p,n); Total += n; if (p == (void *)NULL) { fprintf(stderr,"\nNo more memory. We have allocated %ld bytes of the memory.\n",Total); return(p); } return(p); } GC_free(void *p) { ; }