]> git.sur5r.net Git - cc65/blob - libsrc/common/errormsg.c
syschdir by Stefan Haubenthal
[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 const char* const _sys_errlist[] = {
13     "Unknown error",                /*  0 */
14     "No such file or directory",    /*  1 */
15     "Out of memory",                /*  2 */
16     "Permission denied",            /*  3 */
17     "No such device",               /*  4 */
18     "Too many open files",          /*  5 */
19     "Device or resource busy",      /*  6 */
20     "Invalid argument",             /*  7 */
21     "No space left on device",      /*  8 */
22     "File exists",                  /*  9 */
23     "Try again",                    /* 10 */
24     "I/O error",                    /* 11 */
25     "Interrupted system call",      /* 12 */
26     "Function not implemented",     /* 13 */
27     "Illegal seek",                 /* 14 */
28     "Range error",                  /* 15 */
29 };
30
31