From 6154fbcb560f6ee52b462a709aafb5868740439c Mon Sep 17 00:00:00 2001 From: nick black Date: Fri, 23 Jul 2021 11:15:34 -0400 Subject: [PATCH] windows: shim sigset_t --- src/compat/compat.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compat/compat.h b/src/compat/compat.h index 05879f2bf..997dfc303 100644 --- a/src/compat/compat.h +++ b/src/compat/compat.h @@ -34,6 +34,7 @@ extern "C" { typedef struct siginfo_t { int aieeee; } siginfo_t; +#define sigset_t int typedef struct sigaction { void (*sa_handler)(int); void (*sa_sigaction)(int, siginfo_t *, void *);