1 /*
2  * Copyright (c) 1983 Eric P. Allman
3  * Copyright (c) 1988 Regents of the University of California.
4  * All rights reserved.
5  *
6  * %sccs.include.redist.c%
7  */
8 
9 #ifndef lint
10 static char sccsid[] = "@(#)sysexits.c	6.2 (Berkeley) 03/06/93";
11 #endif /* not lint */
12 
13 #include <sysexits.h>
14 
15 /*
16  *  SYSEXITS.C -- error messages corresponding to sysexits.h
17  */
18 char *SysExMsg[] = {
19 	/* 64 USAGE */		"500 Bad usage",
20 	/* 65 DATAERR */	"501 Data format error",
21 	/* 66 NOINPUT */	"550 Cannot open input: %s",
22 	/* 67 NOUSER */		"550 User unknown",
23 	/* 68 NOHOST */		"550 Host unknown",
24 	/* 69 UNAVAILABLE */	"554 Service unavailable",
25 	/* 70 SOFTWARE */	"554 Internal error: %s",
26 	/* 71 OSERR */		"451 Operating system error: %s",
27 	/* 72 OSFILE */		"554 System file missing: %s",
28 	/* 73 CANTCREAT */	"550 Can't create output: %s",
29 	/* 74 IOERR */		"451 I/O error: %s",
30 	/* 75 TEMPFAIL */	"250 Deferred",
31 	/* 76 PROTOCOL */	"554 Remote protocol error",
32 	/* 77 NOPERM */		"550 Insufficient permission: %s",
33 	/* 78 CONFIG */		"554 Local configuration error",
34 };
35 
36 int N_SysEx = sizeof(SysExMsg) / sizeof(SysExMsg[0]);
37