home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / gnu / gmp-1.3.2-src.lha / src / amiga / gmp-1.3.2 / mpz_realloc.c < prev    next >
C/C++ Source or Header  |  1993-05-02  |  2KB  |  51 lines

  1. /* _mpz_realloc -- make the MP_INT have NEW_SIZE digits allocated.
  2.  
  3. Copyright (C) 1991 Free Software Foundation, Inc.
  4.  
  5. This file is part of the GNU MP Library.
  6.  
  7. The GNU MP Library is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2, or (at your option)
  10. any later version.
  11.  
  12. The GNU MP Library is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with the GNU MP Library; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. #include "gmp.h"
  22. #include "gmp-impl.h"
  23.  
  24. void *
  25. #ifdef __STDC__
  26. _mpz_realloc (MP_INT *m, mp_size new_size)
  27. #else
  28. _mpz_realloc (m, new_size)
  29.      MP_INT *m;
  30.      mp_size new_size;
  31. #endif
  32. {
  33.   /* Never allocate zero space. */
  34.   if (new_size == 0)
  35.     new_size = 1;
  36.  
  37.   m->d = (mp_ptr) (*_mp_reallocate_func) (m->d, m->alloc * BYTES_PER_MP_LIMB,
  38.                       new_size * BYTES_PER_MP_LIMB);
  39.   m->alloc = new_size;
  40.  
  41. #if 0
  42.   /* This might break some code that reads the size field after
  43.      reallocation, in the case the reallocated destination and a
  44.      source argument are identical.  */
  45.   if (ABS (m->size) > new_size)
  46.     m->size = 0;
  47. #endif
  48.  
  49.   return (void *) m->d;
  50. }
  51.