Skip to content
Snippets Groups Projects
Commit bde8b842 authored by Luca Pizzamiglio's avatar Luca Pizzamiglio
Browse files

Add EINTEGRITY errno and fix style

parent 4a74f1e0
No related branches found
No related tags found
No related merge requests found
......@@ -190,10 +190,14 @@ cfg_if! {
}
}
#[cfg(not(freebsd13))]
pub const ELAST: ::c_int = 96;
#[cfg(freebsd13)]
pub const ELAST: ::c_int = 97;
cfg_if! {
if #[cfg(not(freebsd13))] {
pub const ELAST: ::c_int = 96;
} else {
pub const EINTEGRITY: ::c_int = 97;
pub const ELAST: ::c_int = 97;
}
}
extern {
pub fn setgrent();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment