1 # include <sysexits.h> 2 # include "useful.h" 3 4 SCCSID(@(#)sysexits.c 3.4 08/29/82); 5 6 /* 7 ** SYSEXITS.C -- error messages corresponding to sysexits.h 8 */ 9 10 char *SysExMsg[] = 11 { 12 /* 64 USAGE */ "Bad usage", 13 /* 65 DATAERR */ "Data format error", 14 /* 66 NOINPUT */ "Cannot open input", 15 /* 67 NOUSER */ "User unknown", 16 /* 68 NOHOST */ "Host unknown", 17 /* 69 UNAVAILABLE */ "Service unavailable", 18 /* 70 SOFTWARE */ "Internal error", 19 /* 71 OSERR */ "Operating system error", 20 /* 72 OSFILE */ "System file missing", 21 /* 73 CANTCREAT */ "Can't create output", 22 /* 74 IOERR */ "I/O error", 23 /* 75 TEMPFAIL */ "Temporary failure", 24 /* 76 PROTOCOL */ "Remote protocol error", 25 }; 26 27 int N_SysEx = sizeof SysExMsg / sizeof SysExMsg[0]; 28