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

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

version 1.1.1.2, 2000/09/09 14:13:10 version 1.1.1.3, 2003/08/25 16:06:35
Line 1 
Line 1 
 /* mpf_size(x) -- return the number of limbs currently used by the  /* mpf_size(x) -- return the number of limbs currently used by the
    value of the float X.     value of the float X.
   
 Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.  Copyright 1993, 1994, 1995, 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"
   
 size_t  size_t
 #if __STDC__  mpf_size (mpf_srcptr f)
 mpf_size (mpf_srcptr x)  
 #else  
 mpf_size (x)  
      mpf_srcptr x;  
 #endif  
 {  {
   return ABS (x->_mp_size);    return __GMP_ABS (f->_mp_size);
 }  }

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

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