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