[BACK]Return to mp_set_fns.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / gmp

Diff for /OpenXM_contrib/gmp/Attic/mp_set_fns.c between version 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2000/09/09 14:12:16 version 1.1.1.3, 2003/08/25 16:06:00
Line 1 
Line 1 
 /* mp_set_memory_functions -- Set the allocate, reallocate, and free functions  /* mp_set_memory_functions -- Set the allocate, reallocate, and free functions
    for use by the mp package.     for use by the mp package.
   
 Copyright (C) 1991, 1993, 1994 Free Software Foundation, Inc.  Copyright 1991, 1993, 1994, 2000, 2001 Free Software Foundation, Inc.
   
 This file is part of the GNU MP Library.  This file is part of the GNU MP Library.
   
Line 24  MA 02111-1307, USA. */
Line 24  MA 02111-1307, USA. */
 #include "gmp-impl.h"  #include "gmp-impl.h"
   
 void  void
 #if __STDC__  
 mp_set_memory_functions (void *(*alloc_func) (size_t),  mp_set_memory_functions (void *(*alloc_func) (size_t),
                          void *(*realloc_func) (void *, size_t, size_t),                           void *(*realloc_func) (void *, size_t, size_t),
                          void (*free_func) (void *, size_t))                           void (*free_func) (void *, size_t))
 #else  
 mp_set_memory_functions (alloc_func, realloc_func, free_func)  
      void *(*alloc_func) ();  
      void *(*realloc_func) ();  
      void (*free_func) ();  
 #endif  
 {  {
   if (alloc_func == 0)    if (alloc_func == 0)
     alloc_func = _mp_default_allocate;      alloc_func = __gmp_default_allocate;
   if (realloc_func == 0)    if (realloc_func == 0)
     realloc_func = _mp_default_reallocate;      realloc_func = __gmp_default_reallocate;
   if (free_func == 0)    if (free_func == 0)
     free_func = _mp_default_free;      free_func = __gmp_default_free;
   
   _mp_allocate_func = alloc_func;    __gmp_allocate_func = alloc_func;
   _mp_reallocate_func = realloc_func;    __gmp_reallocate_func = realloc_func;
   _mp_free_func = free_func;    __gmp_free_func = free_func;
 }  }

Legend:
Removed from v.1.1.1.2  
changed lines
  Added in v.1.1.1.3

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