Added EEOF.

This commit is contained in:
Jonas 'Sortie' Termansen 2012-03-24 15:19:16 +01:00
parent 1ba4417b19
commit 757184fd5c
2 changed files with 2 additions and 0 deletions

View File

@ -33,6 +33,7 @@
#define ELAKE 41
#define EMFILE 42
#define EAGAIN 43
#define EEOF 44
#define EOPNOTSUPP ENOTSUP

View File

@ -81,6 +81,7 @@ namespace Maxsi
case ELAKE: return (char*) "Sit by a lake";
case EMFILE: return (char*) "Too many open files";
case EAGAIN: return (char*) "Resource temporarily unavailable";
case EEOF: return (char*) "End of file";
default: return (char*) "Unknown error condition";
}
}