Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/bits
File: error.h
/* Specializations for error functions.
[0] Fix | Delete
Copyright (C) 2007-2018 Free Software Foundation, Inc.
[1] Fix | Delete
This file is part of the GNU C Library.
[2] Fix | Delete
[3] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[4] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[5] Fix | Delete
License as published by the Free Software Foundation; either
[6] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[7] Fix | Delete
[8] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[9] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[10] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[11] Fix | Delete
Lesser General Public License for more details.
[12] Fix | Delete
[13] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[14] Fix | Delete
License along with the GNU C Library; if not, see
[15] Fix | Delete
<http://www.gnu.org/licenses/>. */
[16] Fix | Delete
[17] Fix | Delete
#ifndef _ERROR_H
[18] Fix | Delete
# error "Never include <bits/error.h> directly; use <error.h> instead."
[19] Fix | Delete
#endif
[20] Fix | Delete
[21] Fix | Delete
[22] Fix | Delete
extern void __REDIRECT (__error_alias, (int __status, int __errnum,
[23] Fix | Delete
const char *__format, ...),
[24] Fix | Delete
error)
[25] Fix | Delete
__attribute__ ((__format__ (__printf__, 3, 4)));
[26] Fix | Delete
extern void __REDIRECT (__error_noreturn, (int __status, int __errnum,
[27] Fix | Delete
const char *__format, ...),
[28] Fix | Delete
error)
[29] Fix | Delete
__attribute__ ((__noreturn__, __format__ (__printf__, 3, 4)));
[30] Fix | Delete
[31] Fix | Delete
[32] Fix | Delete
/* If we know the function will never return make sure the compiler
[33] Fix | Delete
realizes that, too. */
[34] Fix | Delete
__extern_always_inline void
[35] Fix | Delete
error (int __status, int __errnum, const char *__format, ...)
[36] Fix | Delete
{
[37] Fix | Delete
if (__builtin_constant_p (__status) && __status != 0)
[38] Fix | Delete
__error_noreturn (__status, __errnum, __format, __va_arg_pack ());
[39] Fix | Delete
else
[40] Fix | Delete
__error_alias (__status, __errnum, __format, __va_arg_pack ());
[41] Fix | Delete
}
[42] Fix | Delete
[43] Fix | Delete
[44] Fix | Delete
extern void __REDIRECT (__error_at_line_alias, (int __status, int __errnum,
[45] Fix | Delete
const char *__fname,
[46] Fix | Delete
unsigned int __line,
[47] Fix | Delete
const char *__format, ...),
[48] Fix | Delete
error_at_line)
[49] Fix | Delete
__attribute__ ((__format__ (__printf__, 5, 6)));
[50] Fix | Delete
extern void __REDIRECT (__error_at_line_noreturn, (int __status, int __errnum,
[51] Fix | Delete
const char *__fname,
[52] Fix | Delete
unsigned int __line,
[53] Fix | Delete
const char *__format,
[54] Fix | Delete
...),
[55] Fix | Delete
error_at_line)
[56] Fix | Delete
__attribute__ ((__noreturn__, __format__ (__printf__, 5, 6)));
[57] Fix | Delete
[58] Fix | Delete
[59] Fix | Delete
/* If we know the function will never return make sure the compiler
[60] Fix | Delete
realizes that, too. */
[61] Fix | Delete
__extern_always_inline void
[62] Fix | Delete
error_at_line (int __status, int __errnum, const char *__fname,
[63] Fix | Delete
unsigned int __line, const char *__format, ...)
[64] Fix | Delete
{
[65] Fix | Delete
if (__builtin_constant_p (__status) && __status != 0)
[66] Fix | Delete
__error_at_line_noreturn (__status, __errnum, __fname, __line, __format,
[67] Fix | Delete
__va_arg_pack ());
[68] Fix | Delete
else
[69] Fix | Delete
__error_at_line_alias (__status, __errnum, __fname, __line,
[70] Fix | Delete
__format, __va_arg_pack ());
[71] Fix | Delete
}
[72] Fix | Delete
[73] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function