1297Seric # include <sysexits.h>
25196Seric # include "useful.h"
3297Seric 
4*8005Seric SCCSID(@(#)sysexits.c	3.5		08/31/82);
5297Seric 
6575Seric /*
7575Seric **  SYSEXITS.C -- error messages corresponding to sysexits.h
8575Seric */
9409Seric 
10297Seric char	*SysExMsg[] =
11297Seric {
12*8005Seric 	/* 64 USAGE */		"500 Bad usage",
13*8005Seric 	/* 65 DATAERR */	"501 Data format error",
14*8005Seric 	/* 66 NOINPUT */	"550 Cannot open input",
15*8005Seric 	/* 67 NOUSER */		"550 User unknown",
16*8005Seric 	/* 68 NOHOST */		"550 Host unknown",
17*8005Seric 	/* 69 UNAVAILABLE */	"554 Service unavailable",
18*8005Seric 	/* 70 SOFTWARE */	"554 Internal error",
19*8005Seric 	/* 71 OSERR */		"451 Operating system error",
20*8005Seric 	/* 72 OSFILE */		"554 System file missing",
21*8005Seric 	/* 73 CANTCREAT */	"550 Can't create output",
22*8005Seric 	/* 74 IOERR */		"451 I/O error",
23*8005Seric 	/* 75 TEMPFAIL */	"250 Temporary failure",
24*8005Seric 	/* 76 PROTOCOL */	"554 Remote protocol error",
25297Seric };
26297Seric 
27297Seric int	N_SysEx = sizeof SysExMsg / sizeof SysExMsg[0];
28