Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/bits
File: syslog.h
/* Checking macros for syslog functions.
[0] Fix | Delete
Copyright (C) 2005-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 _SYS_SYSLOG_H
[18] Fix | Delete
# error "Never include <bits/syslog.h> directly; use <sys/syslog.h> instead."
[19] Fix | Delete
#endif
[20] Fix | Delete
[21] Fix | Delete
[22] Fix | Delete
extern void __syslog_chk (int __pri, int __flag, const char *__fmt, ...)
[23] Fix | Delete
__attribute__ ((__format__ (__printf__, 3, 4)));
[24] Fix | Delete
[25] Fix | Delete
#ifdef __va_arg_pack
[26] Fix | Delete
__fortify_function void
[27] Fix | Delete
syslog (int __pri, const char *__fmt, ...)
[28] Fix | Delete
{
[29] Fix | Delete
__syslog_chk (__pri, __USE_FORTIFY_LEVEL - 1, __fmt, __va_arg_pack ());
[30] Fix | Delete
}
[31] Fix | Delete
#elif !defined __cplusplus
[32] Fix | Delete
# define syslog(pri, ...) \
[33] Fix | Delete
__syslog_chk (pri, __USE_FORTIFY_LEVEL - 1, __VA_ARGS__)
[34] Fix | Delete
#endif
[35] Fix | Delete
[36] Fix | Delete
[37] Fix | Delete
#ifdef __USE_MISC
[38] Fix | Delete
extern void __vsyslog_chk (int __pri, int __flag, const char *__fmt,
[39] Fix | Delete
__gnuc_va_list __ap)
[40] Fix | Delete
__attribute__ ((__format__ (__printf__, 3, 0)));
[41] Fix | Delete
[42] Fix | Delete
__fortify_function void
[43] Fix | Delete
vsyslog (int __pri, const char *__fmt, __gnuc_va_list __ap)
[44] Fix | Delete
{
[45] Fix | Delete
__vsyslog_chk (__pri, __USE_FORTIFY_LEVEL - 1, __fmt, __ap);
[46] Fix | Delete
}
[47] Fix | Delete
#endif
[48] Fix | Delete
[49] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function