Blame lib/error.h

Packit 8f70b4
/* Declaration for error-reporting function
Packit 8f70b4
   Copyright (C) 1995-1997, 2003, 2006, 2008-2018 Free Software Foundation,
Packit 8f70b4
   Inc.
Packit 8f70b4
   This file is part of the GNU C Library.
Packit 8f70b4
Packit 8f70b4
   This program is free software: you can redistribute it and/or modify
Packit 8f70b4
   it under the terms of the GNU General Public License as published by
Packit 8f70b4
   the Free Software Foundation; either version 3 of the License, or
Packit 8f70b4
   (at your option) any later version.
Packit 8f70b4
Packit 8f70b4
   This program is distributed in the hope that it will be useful,
Packit 8f70b4
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 8f70b4
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 8f70b4
   GNU General Public License for more details.
Packit 8f70b4
Packit 8f70b4
   You should have received a copy of the GNU General Public License
Packit 8f70b4
   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
Packit 8f70b4
Packit 8f70b4
#ifndef _ERROR_H
Packit 8f70b4
#define _ERROR_H 1
Packit 8f70b4
Packit 8f70b4
/* The __attribute__ feature is available in gcc versions 2.5 and later.
Packit 8f70b4
   The __-protected variants of the attributes 'format' and 'printf' are
Packit 8f70b4
   accepted by gcc versions 2.6.4 (effectively 2.7) and later.
Packit 8f70b4
   We enable _GL_ATTRIBUTE_FORMAT only if these are supported too, because
Packit 8f70b4
   gnulib and libintl do '#define printf __printf__' when they override
Packit 8f70b4
   the 'printf' function.  */
Packit 8f70b4
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
Packit 8f70b4
# define _GL_ATTRIBUTE_FORMAT(spec) __attribute__ ((__format__ spec))
Packit 8f70b4
#else
Packit 8f70b4
# define _GL_ATTRIBUTE_FORMAT(spec) /* empty */
Packit 8f70b4
#endif
Packit 8f70b4
Packit 8f70b4
/* On mingw, the flavor of printf depends on whether the extensions module
Packit 8f70b4
 * is in use; the check for <stdio.h> determines the witness macro.  */
Packit 8f70b4
#ifndef _GL_ATTRIBUTE_SPEC_PRINTF
Packit 8f70b4
# if GNULIB_PRINTF_ATTRIBUTE_FLAVOR_GNU
Packit 8f70b4
#  define _GL_ATTRIBUTE_SPEC_PRINTF __gnu_printf__
Packit 8f70b4
# else
Packit 8f70b4
#  define _GL_ATTRIBUTE_SPEC_PRINTF __printf__
Packit 8f70b4
# endif
Packit 8f70b4
#endif
Packit 8f70b4
Packit 8f70b4
#ifdef __cplusplus
Packit 8f70b4
extern "C" {
Packit 8f70b4
#endif
Packit 8f70b4
Packit 8f70b4
/* Print a message with 'fprintf (stderr, FORMAT, ...)';
Packit 8f70b4
   if ERRNUM is nonzero, follow it with ": " and strerror (ERRNUM).
Packit 8f70b4
   If STATUS is nonzero, terminate the program with 'exit (STATUS)'.  */
Packit 8f70b4
Packit 8f70b4
extern void error (int __status, int __errnum, const char *__format, ...)
Packit 8f70b4
     _GL_ATTRIBUTE_FORMAT ((_GL_ATTRIBUTE_SPEC_PRINTF, 3, 4));
Packit 8f70b4
Packit 8f70b4
extern void error_at_line (int __status, int __errnum, const char *__fname,
Packit 8f70b4
                           unsigned int __lineno, const char *__format, ...)
Packit 8f70b4
     _GL_ATTRIBUTE_FORMAT ((_GL_ATTRIBUTE_SPEC_PRINTF, 5, 6));
Packit 8f70b4
Packit 8f70b4
/* If NULL, error will flush stdout, then print on stderr the program
Packit 8f70b4
   name, a colon and a space.  Otherwise, error will call this
Packit 8f70b4
   function without parameters instead.  */
Packit 8f70b4
extern void (*error_print_progname) (void);
Packit 8f70b4
Packit 8f70b4
/* This variable is incremented each time 'error' is called.  */
Packit 8f70b4
extern unsigned int error_message_count;
Packit 8f70b4
Packit 8f70b4
/* Sometimes we want to have at most one error per line.  This
Packit 8f70b4
   variable controls whether this mode is selected or not.  */
Packit 8f70b4
extern int error_one_per_line;
Packit 8f70b4
Packit 8f70b4
#ifdef __cplusplus
Packit 8f70b4
}
Packit 8f70b4
#endif
Packit 8f70b4
Packit 8f70b4
#endif /* error.h */