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

数学计算

开发平台:

Unix_Linux

  1. /* GMP assertion failure handler.
  2.    THE FUNCTIONS IN THIS FILE ARE FOR INTERNAL USE ONLY.  THEY'RE ALMOST
  3.    CERTAIN TO BE SUBJECT TO INCOMPATIBLE CHANGES OR DISAPPEAR COMPLETELY IN
  4.    FUTURE GNU MP RELEASES.
  5. Copyright 2000, 2001 Free Software Foundation, Inc.
  6. This file is part of the GNU MP Library.
  7. The GNU MP Library is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU Lesser General Public License as published by
  9. the Free Software Foundation; either version 3 of the License, or (at your
  10. option) any later version.
  11. The GNU MP Library is distributed in the hope that it will be useful, but
  12. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  13. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  14. License for more details.
  15. You should have received a copy of the GNU Lesser General Public License
  16. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  17. #include <stdio.h>
  18. #include <stdlib.h>
  19. #include "gmp.h"
  20. #include "gmp-impl.h"
  21. void
  22. __gmp_assert_header (const char *filename, int linenum)
  23. {
  24.   if (filename != NULL && filename[0] != '')
  25.     {
  26.       fprintf (stderr, "%s:", filename);
  27.       if (linenum != -1)
  28.         fprintf (stderr, "%d: ", linenum);
  29.     }
  30. }
  31. void
  32. __gmp_assert_fail (const char *filename, int linenum,
  33.                    const char *expr)
  34. {
  35.   __gmp_assert_header (filename, linenum);
  36.   fprintf (stderr, "GNU MP assertion failed: %sn", expr);
  37.   abort();
  38. }