Skip to content
Snippets Groups Projects
Commit f467791b authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Fix definition of SIG_ERR

parent cb63dec8
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,7 @@ type SigSet = BitSet<[c_ulong; 1]>; ...@@ -23,7 +23,7 @@ type SigSet = BitSet<[c_ulong; 1]>;
pub const SIG_DFL: usize = 0; pub const SIG_DFL: usize = 0;
pub const SIG_IGN: usize = 1; pub const SIG_IGN: usize = 1;
pub const SIG_ERR: usize = !0; pub const SIG_ERR: isize = -1;
pub const SIG_BLOCK: c_int = 0; pub const SIG_BLOCK: c_int = 0;
pub const SIG_UNBLOCK: c_int = 1; pub const SIG_UNBLOCK: c_int = 1;
......
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