From dc2bee5f4259a878aef9d5e29028a40de3326997 Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Mon, 8 Sep 2008 23:19:41 +0100 Subject: [PATCH] include: Define sigset_t in pthread.h if HAVE_SIGSET_T isn't defined. --- include/wine/pthread.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/wine/pthread.h b/include/wine/pthread.h index 1971ebb40c0..a8d5ba30de5 100644 --- a/include/wine/pthread.h +++ b/include/wine/pthread.h @@ -25,6 +25,11 @@ struct wine_pthread_callbacks; #include +#ifndef HAVE_SIGSET_T +struct sigset_t; +typedef struct sigset_t sigset_t; +#endif + #ifdef HAVE_PTHREAD_H #define _GNU_SOURCE