diff options
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/includes.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h index 760280eb0e..eb2cacbdc7 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -271,12 +271,10 @@ typedef int ber_int_t; /* * Define additional missing types */ -#if defined(HAVE_SIG_ATOMIC_T_TYPE) && defined(AIX) +#if defined(AIX) typedef sig_atomic_t SIG_ATOMIC_T; -#elif defined(HAVE_SIG_ATOMIC_T_TYPE) && !defined(AIX) -typedef sig_atomic_t volatile SIG_ATOMIC_T; #else -typedef int volatile SIG_ATOMIC_T; +typedef sig_atomic_t volatile SIG_ATOMIC_T; #endif #ifndef uchar |