diff options
author | bje <bje> | 1998-10-03 04:36:12 +0000 |
---|---|---|
committer | bje <bje> | 1998-10-03 04:36:12 +0000 |
commit | 7beea63d725e4db27d693f8a27d9a2779f37516b (patch) | |
tree | 2814faddd301a72be575bb7b8fd0375938d58e0b /pthread.h | |
parent | d959f43a2226cb141cfab2e939e837423f152ff5 (diff) |
Use #if, not #ifdef.
Diffstat (limited to 'pthread.h')
-rw-r--r-- | pthread.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -28,14 +28,14 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #undef _POSIX_THREAD_ATTR_STACKADDR #endif -#ifdef HAVE_CONFIG_H +#if HAVE_CONFIG_H #include "config.h" #endif /* HAVE_CONFIG_H */ #include <windows.h> #include <time.h> -#ifdef HAVE_SIGNAL_H +#if HAVE_SIGNAL_H #include <signal.h> #endif /* HAVE_SIGNAL_H */ @@ -90,7 +90,7 @@ typedef struct { int detachedstate; /* PTHREAD_CREATE_DETACHED PTHREAD_CREATE_JOINABLE */ -#ifdef HAVE_SIGSET_T +#if HAVE_SIGSET_T sigset_t sigmask; #endif /* HAVE_SIGSET_T */ |