1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00
cc65/libsrc/common/errormsg.c
Greg King 0390c34e88 Changed multi-line C comments into another style.
The left side doesn't look unbalanced.
2014-06-30 16:51:07 -04:00

31 lines
978 B
C

/*
** 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 */
"Unknown OS error code", /* EUNKNOWN */
};