Skip to content

Commit

Permalink
VxWorks does provide sigemptyset and sigaddset
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasBaron committed Jul 21, 2021
1 parent b07d175 commit 7a9dd00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/std/src/sys/unix/process/process_common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ cfg_if::cfg_if! {
raw[bit / 8] |= 1 << (bit % 8);
return 0;
}
} else if #[cfg(not(target_os = "vxworks"))] {
} else {
pub use libc::{sigemptyset, sigaddset};
}
}
Expand Down

0 comments on commit 7a9dd00

Please sign in to comment.