windows: stub out siginfo_t

This commit is contained in:
nick black 2021-07-22 16:52:05 -04:00
parent 15c3d88ddb
commit 8df13818de
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

View File

@ -28,6 +28,9 @@ extern "C" {
#define nl_langinfo(x) NULL
#define sigdelset(x, y)
#define sigaddset(x, y)
typedef struct siginfo_t {
int aieeee;
} siginfo_t;
typedef struct sigaction {
void (*sa_handler)(int);
void (*sa_sigaction)(int, siginfo_t *, void *);