Skip to content

Commit

Permalink
Add ENOTSUP constant for riscv64 musl
Browse files Browse the repository at this point in the history
  • Loading branch information
nmeum committed May 8, 2022
1 parent 78d6835 commit 1c5bc66
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/unix/linux_like/linux/musl/b64/riscv64/mod.rs
Expand Up @@ -546,6 +546,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 1c5bc66

Please sign in to comment.