Skip to content

Commit 9ed71fa

Browse files
committed
Auto merge of #2656 - kraj:rv64-musl-defines, r=Amanieu
riscv64/mod.rs: Add missing error codes These are flagged by apps e.g. python3-pyruvate Signed-off-by: Khem Raj <[email protected]>
2 parents 1068fee + c711fb2 commit 9ed71fa

File tree

1 file changed

+5
-0
lines changed
  • src/unix/linux_like/linux/musl/b64/riscv64

1 file changed

+5
-0
lines changed

src/unix/linux_like/linux/musl/b64/riscv64/mod.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,11 @@ pub const EHOSTUNREACH: ::c_int = 113;
548548
pub const EALREADY: ::c_int = 114;
549549
pub const EINPROGRESS: ::c_int = 115;
550550
pub const ESTALE: ::c_int = 116;
551+
pub const EUCLEAN: ::c_int = 117;
552+
pub const ENOTNAM: ::c_int = 118;
553+
pub const ENAVAIL: ::c_int = 119;
554+
pub const EISNAM: ::c_int = 120;
555+
pub const EREMOTEIO: ::c_int = 121;
551556
pub const EDQUOT: ::c_int = 122;
552557
pub const ENOMEDIUM: ::c_int = 123;
553558
pub const EMEDIUMTYPE: ::c_int = 124;

0 commit comments

Comments
 (0)