Skip to content

Commit b63e15f

Browse files
committed
openbsd: update errno definition
1 parent 385a822 commit b63e15f

File tree

1 file changed

+5
-1
lines changed
  • src/unix/bsd/netbsdlike/openbsdlike

1 file changed

+5
-1
lines changed

src/unix/bsd/netbsdlike/openbsdlike/mod.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,11 @@ pub const ECANCELED : ::c_int = 88;
211211
pub const EIDRM : ::c_int = 89;
212212
pub const ENOMSG : ::c_int = 90;
213213
pub const ENOTSUP : ::c_int = 91;
214-
pub const ELAST : ::c_int = 91;
214+
pub const EBADMSG : ::c_int = 92;
215+
pub const ENOTRECOVERABLE : ::c_int = 93;
216+
pub const EOWNERDEAD : ::c_int = 94;
217+
pub const EPROTO : ::c_int = 95;
218+
pub const ELAST : ::c_int = 95;
215219

216220
pub const F_DUPFD_CLOEXEC : ::c_int = 10;
217221

0 commit comments

Comments
 (0)