Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include
File: err.h
/* 4.4BSD utility functions for error messages.
[0] Fix | Delete
Copyright (C) 1995-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 _ERR_H
[18] Fix | Delete
#define _ERR_H 1
[19] Fix | Delete
[20] Fix | Delete
#include <features.h>
[21] Fix | Delete
[22] Fix | Delete
#define __need___va_list
[23] Fix | Delete
#include <stdarg.h>
[24] Fix | Delete
#ifndef __GNUC_VA_LIST
[25] Fix | Delete
# define __gnuc_va_list void *
[26] Fix | Delete
#endif
[27] Fix | Delete
[28] Fix | Delete
__BEGIN_DECLS
[29] Fix | Delete
[30] Fix | Delete
/* Print "program: ", FORMAT, ": ", the standard error string for errno,
[31] Fix | Delete
and a newline, on stderr. */
[32] Fix | Delete
extern void warn (const char *__format, ...)
[33] Fix | Delete
__attribute__ ((__format__ (__printf__, 1, 2)));
[34] Fix | Delete
extern void vwarn (const char *__format, __gnuc_va_list)
[35] Fix | Delete
__attribute__ ((__format__ (__printf__, 1, 0)));
[36] Fix | Delete
[37] Fix | Delete
/* Likewise, but without ": " and the standard error string. */
[38] Fix | Delete
extern void warnx (const char *__format, ...)
[39] Fix | Delete
__attribute__ ((__format__ (__printf__, 1, 2)));
[40] Fix | Delete
extern void vwarnx (const char *__format, __gnuc_va_list)
[41] Fix | Delete
__attribute__ ((__format__ (__printf__, 1, 0)));
[42] Fix | Delete
[43] Fix | Delete
/* Likewise, and then exit with STATUS. */
[44] Fix | Delete
extern void err (int __status, const char *__format, ...)
[45] Fix | Delete
__attribute__ ((__noreturn__, __format__ (__printf__, 2, 3)));
[46] Fix | Delete
extern void verr (int __status, const char *__format, __gnuc_va_list)
[47] Fix | Delete
__attribute__ ((__noreturn__, __format__ (__printf__, 2, 0)));
[48] Fix | Delete
extern void errx (int __status, const char *__format, ...)
[49] Fix | Delete
__attribute__ ((__noreturn__, __format__ (__printf__, 2, 3)));
[50] Fix | Delete
extern void verrx (int __status, const char *, __gnuc_va_list)
[51] Fix | Delete
__attribute__ ((__noreturn__, __format__ (__printf__, 2, 0)));
[52] Fix | Delete
[53] Fix | Delete
__END_DECLS
[54] Fix | Delete
[55] Fix | Delete
#endif /* err.h */
[56] Fix | Delete
[57] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function