Added EBOUND.

This commit is contained in:
Jonas 'Sortie' Termansen 2012-04-02 20:24:56 +02:00
parent 95a088fec5
commit 5d59f0ed03
2 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,7 @@
#define EMFILE 42
#define EAGAIN 43
#define EEOF 44
#define EBOUND 45
#define EOPNOTSUPP ENOTSUP

View File

@ -82,6 +82,7 @@ namespace Maxsi
case EMFILE: return (char*) "Too many open files";
case EAGAIN: return (char*) "Resource temporarily unavailable";
case EEOF: return (char*) "End of file";
case EBOUND: return (char*) "Out of bounds";
default: return (char*) "Unknown error condition";
}
}