Add ENOTSUP, which is specified as an error return value for various

POSIX/SUSv2 functions.
This commit is contained in:
jasone 2000-05-02 06:02:11 +00:00
parent 9b0438a751
commit 7f69d42c1e

View File

@ -108,6 +108,7 @@ __END_DECLS
#define EPROTONOSUPPORT 43 /* Protocol not supported */
#define ESOCKTNOSUPPORT 44 /* Socket type not supported */
#define EOPNOTSUPP 45 /* Operation not supported */
#define ENOTSUP EOPNOTSUPP /* Operation not supported */
#define EPFNOSUPPORT 46 /* Protocol family not supported */
#define EAFNOSUPPORT 47 /* Address family not supported by protocol family */
#define EADDRINUSE 48 /* Address already in use */