mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
1dabfda734
git-svn-id: svn://svn.cc65.org/cc65/trunk@4697 b7a2c559-68d2-44c3-8de9-860c34a00d81
34 lines
1.1 KiB
C
34 lines
1.1 KiB
C
/*
|
|
* 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 */
|
|
};
|
|
|
|
|