/[gcl]/gcl/gmp/mpz/tests/t-misc.c
ViewVC logotype

Diff of /gcl/gmp/mpz/tests/t-misc.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by camm, Sat Dec 15 06:29:42 2001 UTC revision 1.1.2.1 by camm, Fri Jan 11 17:58:48 2002 UTC
# Line 22  MA 02111-1307, USA. Line 22  MA 02111-1307, USA.
22  */  */
23    
24  #include <stdio.h>  #include <stdio.h>
25    #include <stdlib.h>
26    #include <string.h>
27  #include "gmp.h"  #include "gmp.h"
28  #include "gmp-impl.h"  #include "gmp-impl.h"
29    
30    size_t
31    #if defined(__STDC__)
32      mpz_out_str (FILE *stream, int base, mpz_srcptr x);
33    #else
34      mpz_out_str (stream, base, x);
35    #endif
36    
37  #define SGN(x)       ((x) < 0 ? -1 : (x) == 0 ? 0 : 1)  #define SGN(x)       ((x) < 0 ? -1 : (x) == 0 ? 0 : 1)
38    
39    

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.1.2.1

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26