version 1.2, 2000/01/16 07:55:39 |
version 1.5, 2015/09/19 09:56:06 |
|
|
/* $OpenXM$ */ |
/* $OpenXM: OpenXM/src/kan96xx/Kan/nogc.c,v 1.4 2004/02/27 09:46:46 takayama Exp $ */ |
#include <stdio.h> |
#include <stdio.h> |
static long Total = 0; |
static long Total = 0; |
|
unsigned int GC_version=0; |
|
|
void *GC_malloc(n) |
void *GC_malloc(n) |
int n; |
int n; |
{ |
{ |
void *p; |
void *p; |
p = (void *)calloc(n,1); /* clear the memory */ |
p = (void *)calloc(n,1); /* clear the memory */ |
Line 29 void *GC_realloc(void *p,int n) { |
|
Line 30 void *GC_realloc(void *p,int n) { |
|
} |
} |
|
|
GC_free(void *p) { ; } |
GC_free(void *p) { ; } |
|
|
|
GC_version(void) { return(GC_version); } |
|
|
|
|
|
|