1: # include <sysexits.h>
2:
3: static char SccsId[] = "@(#)sysexits.c 2.1 11/5/80";
4:
5: /*
6: ** SYSEXITS.C -- error messages corresponding to sysexits.h
7: */
8:
9: char *SysExMsg[] =
10: {
11: /* 64 */ "Bad usage",
12: /* 65 */ "Data format error",
13: /* 66 */ "Cannot open input",
14: /* 67 */ "User unknown",
15: /* 68 */ "Host unknown",
16: /* 69 */ "Service unavailable",
17: /* 70 */ "Internal error",
18: /* 71 */ "Operating system error",
19: /* 72 */ "System file missing",
20: /* 73 */ "Can't create output",
21: /* 74 */ "I/O error",
22: };
23:
24: int N_SysEx = sizeof SysExMsg / sizeof SysExMsg[0];
Defined variables
SccsId
defined in line
3;
never used