Pristine Ack-5.5
[Ack-5.5.git] / lang / cem / libcc.ansi / errno / errlist.c
1 /*
2  * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
3  * See the copyright notice in the ACK home directory, in the file "Copyright".
4  */
5 /* $Id: errlist.c,v 1.2 1994/06/24 11:39:21 ceriel Exp $ */
6
7 #include        <errno.h>
8
9 const char *_sys_errlist[] = {
10         "Error 0",
11         "Not owner",
12         "No such file or directory",
13         "No such process",
14         "Interrupted system call",
15         "I/O error",
16         "No such device or address",
17         "Arg list too long",
18         "Exec format error",
19         "Bad file number",
20         "No children",
21         "No more processes",
22         "Not enough core",
23         "Permission denied",
24         "Bad address",
25         "Block device required",
26         "Mount device busy",
27         "File exists",
28         "Cross-device link",
29         "No such device",
30         "Not a directory",
31         "Is a directory",
32         "Invalid argument",
33         "File table overflow",
34         "Too many open files",
35         "Not a typewriter",
36         "Text file busy",
37         "File too large",
38         "No space left on device",
39         "Illegal seek",
40         "Read-only file system",
41         "Too many links",
42         "Broken pipe",
43         "Math argument",
44         "Result too large"
45 };
46
47 const int _sys_nerr = sizeof(_sys_errlist) / sizeof(_sys_errlist[0]);