Skip to content

Commit

Permalink
Add ENOTSUP on Redox
Browse files Browse the repository at this point in the history
  • Loading branch information
jackpot51 committed Oct 17, 2022
1 parent fd7ccb4 commit 4c10c66
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/unix/redox/mod.rs
Expand Up @@ -375,6 +375,7 @@ pub const EPROTONOSUPPORT: ::c_int = 93; /* Protocol not supported */
pub const ESOCKTNOSUPPORT: ::c_int = 94; /* Socket type not supported */
/* Operation not supported on transport endpoint */
pub const EOPNOTSUPP: ::c_int = 95;
pub const ENOTSUP: ::c_int = EOPNOTSUPP;
pub const EPFNOSUPPORT: ::c_int = 96; /* Protocol family not supported */
/* Address family not supported by protocol */
pub const EAFNOSUPPORT: ::c_int = 97;
Expand Down

0 comments on commit 4c10c66

Please sign in to comment.