Skip to content

Commit

Permalink
Add ENOTSUP constant for riscv32/musl
Browse files Browse the repository at this point in the history
  • Loading branch information
kraj committed Aug 19, 2022
1 parent 2c7f384 commit e9fb036
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/unix/linux_like/linux/musl/b32/riscv32/mod.rs
Expand Up @@ -271,6 +271,7 @@ pub const ENOPROTOOPT: ::c_int = 92;
pub const EPROTONOSUPPORT: ::c_int = 93;
pub const ESOCKTNOSUPPORT: ::c_int = 94;
pub const EOPNOTSUPP: ::c_int = 95;
pub const ENOTSUP: ::c_int = EOPNOTSUPP;
pub const EPFNOSUPPORT: ::c_int = 96;
pub const EAFNOSUPPORT: ::c_int = 97;
pub const EADDRINUSE: ::c_int = 98;
Expand Down

0 comments on commit e9fb036

Please sign in to comment.