t-gmpmax.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:2k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* Check the values of __GMP_UINT_MAX etc.
  2. Copyright 2001 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include <limits.h>
  17. #include "gmp.h"
  18. /* __GMP_UINT_MAX etc are generated with expressions in gmp.h since we don't
  19.    want to demand <limits.h> or forcibly include it.  Check the expressions
  20.    come out the same as <limits.h>.  */
  21. int
  22. main (int argc, char *argv[])
  23. {
  24.   int  error = 0;
  25. #ifdef UINT_MAX
  26.   if (__GMP_UINT_MAX != UINT_MAX)
  27.     {
  28.       printf ("__GMP_UINT_MAX incorrectn");
  29.       printf ("  __GMP_UINT_MAX  %u  0x%Xn", __GMP_UINT_MAX, __GMP_UINT_MAX);
  30.       printf ("  UINT_MAX        %u  0x%Xn", UINT_MAX, UINT_MAX);
  31.       error = 1;
  32.     }
  33. #endif
  34.   /* gcc 2.95.2 limits.h on solaris 2.5.1 incorrectly selects a 64-bit
  35.      LONG_MAX, leading to some integer overflow in ULONG_MAX and a spurious
  36.      __GMP_ULONG_MAX != ULONG_MAX.  Casting ULONG_MAX to unsigned long is a
  37.      workaround.  */
  38. #ifdef ULONG_MAX
  39.   if (__GMP_ULONG_MAX != (unsigned long) ULONG_MAX)
  40.     {
  41.       printf ("__GMP_ULONG_MAX incorrectn");
  42.       printf ("  __GMP_ULONG_MAX  %lu  0x%lXn", __GMP_ULONG_MAX, __GMP_ULONG_MAX);
  43.       printf ("  ULONG_MAX        %lu  0x%lXn", ULONG_MAX, ULONG_MAX);
  44.       error = 1;
  45.     }
  46. #endif
  47. #ifdef USHRT_MAX
  48.   if (__GMP_USHRT_MAX != USHRT_MAX)
  49.     {
  50.       printf ("__GMP_USHRT_MAX incorrectn");
  51.       printf ("  __GMP_USHRT_MAX  %hu  0x%hXn", __GMP_USHRT_MAX, __GMP_USHRT_MAX);
  52.       printf ("  USHRT_MAX        %hu  0x%hXn", USHRT_MAX, USHRT_MAX);
  53.       error = 1;
  54.     }
  55. #endif
  56.   if (error)
  57.     abort ();
  58.   exit (0);
  59. }