Skip to content

Commit ba8ad25

Browse files
committed
mips64: add missing ENOTSUP const
ENOTSUP was added to Mips but not Mips64. Signed-off-by: Donald Hoskins <grommish@gmail.com>
1 parent f7ecd5d commit ba8ad25

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/unix/linux_like/linux/musl/b64/mips64.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -505,6 +505,7 @@ pub const ENOPROTOOPT: ::c_int = 99;
505505
pub const EPROTONOSUPPORT: ::c_int = 120;
506506
pub const ESOCKTNOSUPPORT: ::c_int = 121;
507507
pub const EOPNOTSUPP: ::c_int = 122;
508+
pub const ENOTSUP: ::c_int = EOPNOTSUPP;
508509
pub const EPFNOSUPPORT: ::c_int = 123;
509510
pub const EAFNOSUPPORT: ::c_int = 124;
510511
pub const EADDRINUSE: ::c_int = 125;

0 commit comments

Comments
 (0)