Skip to content

Commit

Permalink
Auto merge of #2884 - kraj:master, r=JohnTitor
Browse files Browse the repository at this point in the history
Add ENOTSUP constant for riscv32/musl
  • Loading branch information
bors committed Aug 19, 2022
2 parents 2c7f384 + e9fb036 commit 59a6070
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 59a6070

Please sign in to comment.