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

Annotation of OpenXM_contrib/gmp/cre-mparam.c, Revision 1.1.1.1

1.1       maekawa     1: #include "gmp.h"
                      2:
                      3: main ()
                      4: {
                      5: printf ("/* gmp-mparam.h -- Compiler/machine parameter header file.\n\n");
                      6: printf ("    *** CREATED BY A PROGRAM -- DO NOT EDIT ***\n\n");
                      7: printf ("Copyright (C) 1996 Free Software Foundation, Inc.  */\n\n");
                      8:
                      9: printf ("#define BITS_PER_MP_LIMB %d\n", 8 * sizeof (mp_limb_t));
                     10: printf ("#define BYTES_PER_MP_LIMB %d\n", sizeof (mp_limb_t));
                     11: printf ("#define BITS_PER_LONGINT %d\n", 8 * sizeof (long));
                     12: printf ("#define BITS_PER_INT %d\n", 8 * sizeof (int));
                     13: printf ("#define BITS_PER_SHORTINT %d\n", 8 * sizeof (short));
                     14: printf ("#define BITS_PER_CHAR 8\n");
                     15: exit (0);
                     16: }

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