]> git.sur5r.net Git - cc65/blob - libsrc/common/errormsg.c
Fixed a bug
[cc65] / libsrc / common / errormsg.c
1 /*
2  * errormsg.c
3  *
4  * Ullrich von Bassewitz, 17.05.2000
5  *
6  * Must be a C function, since we have otherwise problems with the different
7  * character sets.
8  */
9
10
11
12 /* Place the following data into the readonly data segment */
13 #pragma dataseg ("RODATA")
14
15 const char* _sys_errlist[] = {
16     "Unknown error",                /*  0 */
17     "No such file or directory",    /*  1 */
18     "Out of memory",                /*  2 */
19     "Permission denied",            /*  3 */
20     "No such device",               /*  4 */
21     "Too many open files",          /*  5 */
22     "Device or resource busy",      /*  6 */
23     "Invalid argument",             /*  7 */
24     "No space left on device",      /*  8 */
25     "File exists",                  /*  9 */
26     "Try again",                    /* 10 */
27     "I/O error",                    /* 11 */
28     "Interrupted system call",      /* 12 */
29     "Function not implemented",     /* 13 */
30     "Illegal seek",                 /* 14 */
31 };
32
33