Added ENOTSUP.

This commit is contained in:
Jonas 'Sortie' Termansen 2012-01-18 15:40:31 +01:00
parent 17d1b67a77
commit f676cf75f4
2 changed files with 2 additions and 0 deletions

View File

@ -23,5 +23,6 @@
#define ENOTTY 31
#define ECHILD 32
#define ENOSYS 33
#define ENOTSUP 34
#endif

View File

@ -71,6 +71,7 @@ namespace Maxsi
case ENOTTY: return (char*) "Not a tty";
case ECHILD: return (char*) "No child processes";
case ENOSYS: return (char*) "Function not implemented";
case ENOTSUP: return (char*) "Operation not supported";
default: return (char*) "Unknown error condition";
}
}