fix missing ENOTSUP error code

This commit is contained in:
Rich Felker 2011-03-11 09:50:54 -05:00
parent f1821fce81
commit cabf2ff349
2 changed files with 2 additions and 0 deletions

View File

@ -93,6 +93,7 @@
#define EPROTONOSUPPORT 93
#define ESOCKTNOSUPPORT 94
#define EOPNOTSUPP 95
#define ENOTSUP EOPNOTSUPP
#define EPFNOSUPPORT 96
#define EAFNOSUPPORT 97
#define EADDRINUSE 98

View File

@ -93,6 +93,7 @@
#define EPROTONOSUPPORT 93
#define ESOCKTNOSUPPORT 94
#define EOPNOTSUPP 95
#define ENOTSUP EOPNOTSUPP
#define EPFNOSUPPORT 96
#define EAFNOSUPPORT 97
#define EADDRINUSE 98