1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

Added EINIT, "Not initialized".

This commit is contained in:
Jonas 'Sortie' Termansen 2012-05-27 17:20:33 +02:00
parent e8d75643ea
commit 9905a2f2d6
2 changed files with 2 additions and 0 deletions

View file

@ -35,6 +35,7 @@
#define EAGAIN 43
#define EEOF 44
#define EBOUND 45
#define EINIT 46
#define EOPNOTSUPP ENOTSUP

View file

@ -83,6 +83,7 @@ namespace Maxsi
case EAGAIN: return (char*) "Resource temporarily unavailable";
case EEOF: return (char*) "End of file";
case EBOUND: return (char*) "Out of bounds";
case EINIT: return (char*) "Not initialized";
default: return (char*) "Unknown error condition";
}
}