]> git.sur5r.net Git - cc65/blob - libsrc/common/errormsg.c
atari5200: conio now uses just four colors altogether
[cc65] / libsrc / common / errormsg.c
1 /*
2 ** errormsg.c
3 **
4 ** Ullrich von Bassewitz, 17.05.2000
5 */
6
7
8
9 const char* const _sys_errlist[] = {
10     "Unknown error",                /* 0 */
11     "No such file or directory",    /* ENOENT */
12     "Out of memory",                /* ENOMEM */
13     "Permission denied",            /* EACCES */
14     "No such device",               /* ENODEV */
15     "Too many open files",          /* EMFILE */
16     "Device or resource busy",      /* EBUSY */
17     "Invalid argument",             /* EINVAL */
18     "No space left on device",      /* ENOSPC */
19     "File exists",                  /* EEXIST */
20     "Try again",                    /* EAGAIN */
21     "I/O error",                    /* EIO */
22     "Interrupted system call",      /* EINTR */
23     "Function not implemented",     /* ENOSYS */
24     "Illegal seek",                 /* ESPIPE */
25     "Range error",                  /* ERANGE */
26     "Bad file number",              /* EBADF */
27     "Exec format error",            /* ENOEXEC */
28     "Unknown OS error code",        /* EUNKNOWN */
29 };
30
31