Skip to content

Commit c4803a6

Browse files
committed
Add ENOTSUP constant for uclibc
1 parent db71a57 commit c4803a6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/unix/uclibc/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -716,6 +716,7 @@ pub const EPIPE: ::c_int = 32;
716716
pub const EDOM: ::c_int = 33;
717717
pub const ERANGE: ::c_int = 34;
718718
pub const EWOULDBLOCK: ::c_int = EAGAIN;
719+
pub const ENOTSUP: ::c_int = EOPNOTSUPP;
719720

720721
pub const SCM_RIGHTS: ::c_int = 0x01;
721722
pub const SCM_CREDENTIALS: ::c_int = 0x02;

0 commit comments

Comments
 (0)