File: errormsg.c

package info (click to toggle)
cc65 2.19-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 20,268 kB
  • sloc: ansic: 117,151; asm: 66,339; pascal: 4,248; makefile: 1,009; perl: 607
file content (31 lines) | stat: -rw-r--r-- 1,028 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
** errormsg.c
**
** Ullrich von Bassewitz, 17.05.2000
*/



const char* const _sys_errlist[] = {
    "Unknown error",                /* 0 */
    "No such file or directory",    /* ENOENT */
    "Out of memory",                /* ENOMEM */
    "Permission denied",            /* EACCES */
    "No such device",               /* ENODEV */
    "Too many open files",          /* EMFILE */
    "Device or resource busy",      /* EBUSY */
    "Invalid argument",             /* EINVAL */
    "No space left on device",      /* ENOSPC */
    "File exists",                  /* EEXIST */
    "Try again",                    /* EAGAIN */
    "I/O error",                    /* EIO */
    "Interrupted system call",      /* EINTR */
    "Function not implemented",     /* ENOSYS */
    "Illegal seek",                 /* ESPIPE */
    "Range error",                  /* ERANGE */
    "Bad file number",              /* EBADF */
    "Exec format error",            /* ENOEXEC */
    "Unknown OS error code",        /* EUNKNOWN */
};