Skip to content

Commit

Permalink
riscv64/mod.rs: Add missing error codes
Browse files Browse the repository at this point in the history
These are flagged by apps e.g. python3-pyruvate

Signed-off-by: Khem Raj <[email protected]>
  • Loading branch information
kraj committed Jan 26, 2022
1 parent a79788f commit c711fb2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/unix/linux_like/linux/musl/b64/riscv64/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -548,6 +548,11 @@ pub const EHOSTUNREACH: ::c_int = 113;
pub const EALREADY: ::c_int = 114;
pub const EINPROGRESS: ::c_int = 115;
pub const ESTALE: ::c_int = 116;
pub const EUCLEAN: ::c_int = 117;
pub const ENOTNAM: ::c_int = 118;
pub const ENAVAIL: ::c_int = 119;
pub const EISNAM: ::c_int = 120;
pub const EREMOTEIO: ::c_int = 121;
pub const EDQUOT: ::c_int = 122;
pub const ENOMEDIUM: ::c_int = 123;
pub const EMEDIUMTYPE: ::c_int = 124;
Expand Down

0 comments on commit c711fb2

Please sign in to comment.