/* $OpenXM: OpenXM/src/kan96xx/Kan/nogc.c,v 1.2 2000/01/16 07:55:39 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) { ; }