[BACK]Return to nogc.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / kan96xx / Kan

Diff for /OpenXM/src/kan96xx/Kan/nogc.c between version 1.2 and 1.5

version 1.2, 2000/01/16 07:55:39 version 1.5, 2015/09/19 09:56:06
Line 1 
Line 1 
 /* $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); }
   
   
   

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.5

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>