1297Seric # include <sysexits.h>
25196Seric # include "useful.h"
3297Seric 
4*10124Seric SCCSID(@(#)sysexits.c	3.6		01/04/83);
5297Seric 
6575Seric /*
7575Seric **  SYSEXITS.C -- error messages corresponding to sysexits.h
8575Seric */
9409Seric 
10297Seric char	*SysExMsg[] =
11297Seric {
128005Seric 	/* 64 USAGE */		"500 Bad usage",
138005Seric 	/* 65 DATAERR */	"501 Data format error",
148005Seric 	/* 66 NOINPUT */	"550 Cannot open input",
158005Seric 	/* 67 NOUSER */		"550 User unknown",
168005Seric 	/* 68 NOHOST */		"550 Host unknown",
178005Seric 	/* 69 UNAVAILABLE */	"554 Service unavailable",
188005Seric 	/* 70 SOFTWARE */	"554 Internal error",
198005Seric 	/* 71 OSERR */		"451 Operating system error",
208005Seric 	/* 72 OSFILE */		"554 System file missing",
218005Seric 	/* 73 CANTCREAT */	"550 Can't create output",
228005Seric 	/* 74 IOERR */		"451 I/O error",
23*10124Seric 	/* 75 TEMPFAIL */	"250 Deferred",
248005Seric 	/* 76 PROTOCOL */	"554 Remote protocol error",
25297Seric };
26297Seric 
27297Seric int	N_SysEx = sizeof SysExMsg / sizeof SysExMsg[0];
28