Skip to content

Commit 7a9dd00

Browse files
committed
VxWorks does provide sigemptyset and sigaddset
1 parent b07d175 commit 7a9dd00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/sys/unix/process/process_common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ cfg_if::cfg_if! {
5050
raw[bit / 8] |= 1 << (bit % 8);
5151
return 0;
5252
}
53-
} else if #[cfg(not(target_os = "vxworks"))] {
53+
} else {
5454
pub use libc::{sigemptyset, sigaddset};
5555
}
5656
}

0 commit comments

Comments
 (0)