Added EILSEQ.

This commit is contained in:
Jonas 'Sortie' Termansen 2012-03-11 20:44:57 +01:00
parent 9fa5690d79
commit 4ad0d360da
2 changed files with 2 additions and 0 deletions

View File

@ -29,6 +29,7 @@
#define ENOTEMPTY 37
#define EBUSY 38
#define EPIPE 39
#define EILSEQ 40
#define ELAKE 41
#endif

View File

@ -77,6 +77,7 @@ namespace Maxsi
case ENOTEMPTY: return (char*) "Directory not empty";
case EBUSY: return (char*) "Device or resource busy";
case EPIPE: return (char*) "Broken pipe";
case EILSEQ: return (char*) "Illegal byte sequence";
case ELAKE: return (char*) "Sit by a lake";
default: return (char*) "Unknown error condition";
}