xref: /csrg-svn/lib/libc/gen/errlst.c (revision 1964)
1*1964Swnj /* @(#)errlst.c	4.1 (Berkeley) 12/21/80 */
2*1964Swnj char	*sys_errlist[] = {
3*1964Swnj 	"Error 0",
4*1964Swnj 	"Not owner",
5*1964Swnj 	"No such file or directory",
6*1964Swnj 	"No such process",
7*1964Swnj 	"Interrupted system call",
8*1964Swnj 	"I/O error",
9*1964Swnj 	"No such device or address",
10*1964Swnj 	"Arg list too long",
11*1964Swnj 	"Exec format error",
12*1964Swnj 	"Bad file number",
13*1964Swnj 	"No children",
14*1964Swnj 	"No more processes",
15*1964Swnj 	"Not enough core",
16*1964Swnj 	"Permission denied",
17*1964Swnj 	"Bad address",
18*1964Swnj 	"Block device required",
19*1964Swnj 	"Mount device busy",
20*1964Swnj 	"File exists",
21*1964Swnj 	"Cross-device link",
22*1964Swnj 	"No such device",
23*1964Swnj 	"Not a directory",
24*1964Swnj 	"Is a directory",
25*1964Swnj 	"Invalid argument",
26*1964Swnj 	"File table overflow",
27*1964Swnj 	"Too many open files",
28*1964Swnj 	"Not a typewriter",
29*1964Swnj 	"Text file busy",
30*1964Swnj 	"File too large",
31*1964Swnj 	"No space left on device",
32*1964Swnj 	"Illegal seek",
33*1964Swnj 	"Read-only file system",
34*1964Swnj 	"Too many links",
35*1964Swnj 	"Broken pipe",
36*1964Swnj 	"Argument too large",
37*1964Swnj 	"Result too large",
38*1964Swnj };
39*1964Swnj int	sys_nerr = { sizeof sys_errlist/sizeof sys_errlist[0] };
40