[BACK]Return to gmp_fake.c CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_toolkit

Diff for /OpenXM/src/ox_toolkit/gmp_fake.c between version 1.2 and 1.3

version 1.2, 2003/06/05 21:12:07 version 1.3, 2003/08/25 14:28:59
Line 1 
Line 1 
 /* -*- mode: C; coding: euc-japan -*- */  /* -*- mode: C; coding: euc-japan -*- */
 /* $OpenXM: OpenXM/src/ox_toolkit/gmp_fake.c,v 1.1 2003/03/30 08:10:57 ohara Exp $ */  /* $OpenXM: OpenXM/src/ox_toolkit/gmp_fake.c,v 1.2 2003/06/05 21:12:07 ohara Exp $ */
   
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
 #include <ctype.h>  #include <ctype.h>
   #include <limits.h>
 #include "gmp_fake.h"  #include "gmp_fake.h"
   
 #define DEFAULT_LIMB_SIZE 1  #define DEFAULT_LIMB_SIZE 1
Line 12 
Line 13 
 #define MALLOC_ATOMIC(x) malloc((x))  #define MALLOC_ATOMIC(x) malloc((x))
 #define REALLOC(p,x) realloc((p),(x))  #define REALLOC(p,x) realloc((p),(x))
 #define ALLOCA(x) alloca((x))  #define ALLOCA(x) alloca((x))
   
 #if !defined(CHAR_BIT)  
 #define CHAR_BIT 8  
 #endif  
   
 #define HAVE_UNSIGNED_LONG_LONG  #define HAVE_UNSIGNED_LONG_LONG
   

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

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