Skip to content

Commit

Permalink
ci: fix bootstrapping of signal_default.c.v on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
spytheman committed Oct 25, 2023
1 parent a1063bd commit 1b2d947
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vlib/os/signal_default.c.v
Expand Up @@ -24,7 +24,7 @@ fn C.sigemptyset(set &C.sigset_t)
fn C.sigprocmask(how int, set &C.sigset_t, oldset &C.sigset_t) int

fn signal_ignore_internal(args ...Signal) {
$if !android {
$if !android && !macos {
mask1 := C.sigset_t{}
C.sigemptyset(&mask1)
for arg in args {
Expand Down

0 comments on commit 1b2d947

Please sign in to comment.