diff options
Diffstat (limited to 'include/ucontext.h')
-rw-r--r-- | include/ucontext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ucontext.h b/include/ucontext.h index 28d04ea8..3bb776ed 100644 --- a/include/ucontext.h +++ b/include/ucontext.h @@ -8,8 +8,8 @@ extern "C" { #include <signal.h> -#ifdef _GNU_SOURCE -#define ucontext __ucontext +#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) +#define NGREG (sizeof(gregset_t)/sizeof(greg_t)) #endif struct __ucontext; |