Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include
File: sysexits.h
/*
[0] Fix | Delete
* Copyright (c) 1987, 1993
[1] Fix | Delete
* The Regents of the University of California. All rights reserved.
[2] Fix | Delete
*
[3] Fix | Delete
* Redistribution and use in source and binary forms, with or without
[4] Fix | Delete
* modification, are permitted provided that the following conditions
[5] Fix | Delete
* are met:
[6] Fix | Delete
* 1. Redistributions of source code must retain the above copyright
[7] Fix | Delete
* notice, this list of conditions and the following disclaimer.
[8] Fix | Delete
* 2. Redistributions in binary form must reproduce the above copyright
[9] Fix | Delete
* notice, this list of conditions and the following disclaimer in the
[10] Fix | Delete
* documentation and/or other materials provided with the distribution.
[11] Fix | Delete
* 4. Neither the name of the University nor the names of its contributors
[12] Fix | Delete
* may be used to endorse or promote products derived from this software
[13] Fix | Delete
* without specific prior written permission.
[14] Fix | Delete
*
[15] Fix | Delete
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
[16] Fix | Delete
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
[17] Fix | Delete
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
[18] Fix | Delete
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
[19] Fix | Delete
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
[20] Fix | Delete
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
[21] Fix | Delete
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
[22] Fix | Delete
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
[23] Fix | Delete
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
[24] Fix | Delete
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
[25] Fix | Delete
* SUCH DAMAGE.
[26] Fix | Delete
*
[27] Fix | Delete
* @(#)sysexits.h 8.1 (Berkeley) 6/2/93
[28] Fix | Delete
*/
[29] Fix | Delete
[30] Fix | Delete
#ifndef _SYSEXITS_H
[31] Fix | Delete
#define _SYSEXITS_H 1
[32] Fix | Delete
[33] Fix | Delete
/*
[34] Fix | Delete
* SYSEXITS.H -- Exit status codes for system programs.
[35] Fix | Delete
*
[36] Fix | Delete
* This include file attempts to categorize possible error
[37] Fix | Delete
* exit statuses for system programs, notably delivermail
[38] Fix | Delete
* and the Berkeley network.
[39] Fix | Delete
*
[40] Fix | Delete
* Error numbers begin at EX__BASE to reduce the possibility of
[41] Fix | Delete
* clashing with other exit statuses that random programs may
[42] Fix | Delete
* already return. The meaning of the codes is approximately
[43] Fix | Delete
* as follows:
[44] Fix | Delete
*
[45] Fix | Delete
* EX_USAGE -- The command was used incorrectly, e.g., with
[46] Fix | Delete
* the wrong number of arguments, a bad flag, a bad
[47] Fix | Delete
* syntax in a parameter, or whatever.
[48] Fix | Delete
* EX_DATAERR -- The input data was incorrect in some way.
[49] Fix | Delete
* This should only be used for user's data & not
[50] Fix | Delete
* system files.
[51] Fix | Delete
* EX_NOINPUT -- An input file (not a system file) did not
[52] Fix | Delete
* exist or was not readable. This could also include
[53] Fix | Delete
* errors like "No message" to a mailer (if it cared
[54] Fix | Delete
* to catch it).
[55] Fix | Delete
* EX_NOUSER -- The user specified did not exist. This might
[56] Fix | Delete
* be used for mail addresses or remote logins.
[57] Fix | Delete
* EX_NOHOST -- The host specified did not exist. This is used
[58] Fix | Delete
* in mail addresses or network requests.
[59] Fix | Delete
* EX_UNAVAILABLE -- A service is unavailable. This can occur
[60] Fix | Delete
* if a support program or file does not exist. This
[61] Fix | Delete
* can also be used as a catchall message when something
[62] Fix | Delete
* you wanted to do doesn't work, but you don't know
[63] Fix | Delete
* why.
[64] Fix | Delete
* EX_SOFTWARE -- An internal software error has been detected.
[65] Fix | Delete
* This should be limited to non-operating system related
[66] Fix | Delete
* errors as possible.
[67] Fix | Delete
* EX_OSERR -- An operating system error has been detected.
[68] Fix | Delete
* This is intended to be used for such things as "cannot
[69] Fix | Delete
* fork", "cannot create pipe", or the like. It includes
[70] Fix | Delete
* things like getuid returning a user that does not
[71] Fix | Delete
* exist in the passwd file.
[72] Fix | Delete
* EX_OSFILE -- Some system file (e.g., /etc/passwd, /etc/utmp,
[73] Fix | Delete
* etc.) does not exist, cannot be opened, or has some
[74] Fix | Delete
* sort of error (e.g., syntax error).
[75] Fix | Delete
* EX_CANTCREAT -- A (user specified) output file cannot be
[76] Fix | Delete
* created.
[77] Fix | Delete
* EX_IOERR -- An error occurred while doing I/O on some file.
[78] Fix | Delete
* EX_TEMPFAIL -- temporary failure, indicating something that
[79] Fix | Delete
* is not really an error. In sendmail, this means
[80] Fix | Delete
* that a mailer (e.g.) could not create a connection,
[81] Fix | Delete
* and the request should be reattempted later.
[82] Fix | Delete
* EX_PROTOCOL -- the remote system returned something that
[83] Fix | Delete
* was "not possible" during a protocol exchange.
[84] Fix | Delete
* EX_NOPERM -- You did not have sufficient permission to
[85] Fix | Delete
* perform the operation. This is not intended for
[86] Fix | Delete
* file system problems, which should use NOINPUT or
[87] Fix | Delete
* CANTCREAT, but rather for higher level permissions.
[88] Fix | Delete
*/
[89] Fix | Delete
[90] Fix | Delete
#define EX_OK 0 /* successful termination */
[91] Fix | Delete
[92] Fix | Delete
#define EX__BASE 64 /* base value for error messages */
[93] Fix | Delete
[94] Fix | Delete
#define EX_USAGE 64 /* command line usage error */
[95] Fix | Delete
#define EX_DATAERR 65 /* data format error */
[96] Fix | Delete
#define EX_NOINPUT 66 /* cannot open input */
[97] Fix | Delete
#define EX_NOUSER 67 /* addressee unknown */
[98] Fix | Delete
#define EX_NOHOST 68 /* host name unknown */
[99] Fix | Delete
#define EX_UNAVAILABLE 69 /* service unavailable */
[100] Fix | Delete
#define EX_SOFTWARE 70 /* internal software error */
[101] Fix | Delete
#define EX_OSERR 71 /* system error (e.g., can't fork) */
[102] Fix | Delete
#define EX_OSFILE 72 /* critical OS file missing */
[103] Fix | Delete
#define EX_CANTCREAT 73 /* can't create (user) output file */
[104] Fix | Delete
#define EX_IOERR 74 /* input/output error */
[105] Fix | Delete
#define EX_TEMPFAIL 75 /* temp failure; user is invited to retry */
[106] Fix | Delete
#define EX_PROTOCOL 76 /* remote error in protocol */
[107] Fix | Delete
#define EX_NOPERM 77 /* permission denied */
[108] Fix | Delete
#define EX_CONFIG 78 /* configuration error */
[109] Fix | Delete
[110] Fix | Delete
#define EX__MAX 78 /* maximum listed value */
[111] Fix | Delete
[112] Fix | Delete
#endif /* sysexits.h */
[113] Fix | Delete
[114] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function