1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-01 23:29:41 +00:00
cc65/libsrc/common/errormsg.c

34 lines
1.1 KiB
C
Raw Normal View History

/*
* errormsg.c
*
* Ullrich von Bassewitz, 17.05.2000
*
* Must be a C function, since we have otherwise problems with the different
* character sets.
*/
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 */
"Unknown OS error code", /* EUNKNOWN */
};