00001 /* exit() exit codes for some BSD system programs. 00002 Copyright (C) 2003 Free Software Foundation, Inc. 00003 00004 This program is free software; you can redistribute it and/or modify 00005 it under the terms of the GNU Lesser General Public License as published by 00006 the Free Software Foundation; either version 2.1, or (at your option) 00007 any later version. 00008 00009 This program is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 GNU Lesser General Public License for more details. 00013 00014 You should have received a copy of the GNU Lesser General Public License 00015 along with this program; if not, write to the Free Software Foundation, 00016 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ 00017 00018 /* Written by Simon Josefsson based on sysexits(3) man page */ 00019 00020 #ifndef _SYSEXITS_H 00021 #define _SYSEXITS_H 00022 00023 #define EX_USAGE 64 00024 #define EX_DATAERR 65 00025 #define EX_NOINPUT 66 00026 #define EX_NOUSER 67 00027 #define EX_NOHOST 68 00028 #define EX_UNAVAILABLE 69 00029 #define EX_SOFTWARE 70 00030 #define EX_OSERR 71 00031 #define EX_OSFILE 72 00032 #define EX_CANTCREAT 73 00033 #define EX_IOERR 74 00034 #define EX_TEMPFAIL 75 00035 #define EX_PROTOCOL 76 00036 #define EX_NOPERM 77 00037 #define EX_CONFIG 78 00038 00039 #endif /* _SYSEXITS_H */