error.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* Declaration for error-reporting function
  2. Copyright (C) 1995-1997, 2003, 2006, 2008-2016 Free Software Foundation,
  3. Inc.
  4. This file is part of the GNU C Library.
  5. This program is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  15. #ifndef _ERROR_H
  16. #define _ERROR_H 1
  17. /* The __attribute__ feature is available in gcc versions 2.5 and later.
  18. The __-protected variants of the attributes 'format' and 'printf' are
  19. accepted by gcc versions 2.6.4 (effectively 2.7) and later.
  20. We enable _GL_ATTRIBUTE_FORMAT only if these are supported too, because
  21. gnulib and libintl do '#define printf __printf__' when they override
  22. the 'printf' function. */
  23. #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
  24. # define _GL_ATTRIBUTE_FORMAT(spec) __attribute__ ((__format__ spec))
  25. #else
  26. # define _GL_ATTRIBUTE_FORMAT(spec) /* empty */
  27. #endif
  28. /* On mingw, the flavor of printf depends on whether the extensions module
  29. * is in use; the check for <stdio.h> determines the witness macro. */
  30. #ifndef _GL_ATTRIBUTE_SPEC_PRINTF
  31. # if GNULIB_PRINTF_ATTRIBUTE_FLAVOR_GNU
  32. # define _GL_ATTRIBUTE_SPEC_PRINTF __gnu_printf__
  33. # else
  34. # define _GL_ATTRIBUTE_SPEC_PRINTF __printf__
  35. # endif
  36. #endif
  37. #ifdef __cplusplus
  38. extern "C" {
  39. #endif
  40. /* Print a message with 'fprintf (stderr, FORMAT, ...)';
  41. if ERRNUM is nonzero, follow it with ": " and strerror (ERRNUM).
  42. If STATUS is nonzero, terminate the program with 'exit (STATUS)'. */
  43. extern void error (int __status, int __errnum, const char *__format, ...)
  44. _GL_ATTRIBUTE_FORMAT ((_GL_ATTRIBUTE_SPEC_PRINTF, 3, 4));
  45. extern void error_at_line (int __status, int __errnum, const char *__fname,
  46. unsigned int __lineno, const char *__format, ...)
  47. _GL_ATTRIBUTE_FORMAT ((_GL_ATTRIBUTE_SPEC_PRINTF, 5, 6));
  48. /* If NULL, error will flush stdout, then print on stderr the program
  49. name, a colon and a space. Otherwise, error will call this
  50. function without parameters instead. */
  51. extern void (*error_print_progname) (void);
  52. /* This variable is incremented each time 'error' is called. */
  53. extern unsigned int error_message_count;
  54. /* Sometimes we want to have at most one error per line. This
  55. variable controls whether this mode is selected or not. */
  56. extern int error_one_per_line;
  57. #ifdef __cplusplus
  58. }
  59. #endif
  60. #endif /* error.h */