summaryrefslogtreecommitdiff
path: root/pthread.h
diff options
context:
space:
mode:
authorbje <bje>1998-10-03 04:36:12 +0000
committerbje <bje>1998-10-03 04:36:12 +0000
commit7beea63d725e4db27d693f8a27d9a2779f37516b (patch)
tree2814faddd301a72be575bb7b8fd0375938d58e0b /pthread.h
parentd959f43a2226cb141cfab2e939e837423f152ff5 (diff)
Use #if, not #ifdef.
Diffstat (limited to 'pthread.h')
-rw-r--r--pthread.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/pthread.h b/pthread.h
index d3fdb8a..5c31af2 100644
--- a/pthread.h
+++ b/pthread.h
@@ -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 */