From b22e8e75679a55a8881f552e04f063b19f8e1b6a Mon Sep 17 00:00:00 2001 From: Rainer Keller Date: Tue, 19 Feb 2008 00:39:48 +0000 Subject: [PATCH] - Need stdbool.h if included in userland This commit was SVN r17504. --- opal/threads/mutex.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/opal/threads/mutex.h b/opal/threads/mutex.h index 267165e605..dd6c5dfa8e 100644 --- a/opal/threads/mutex.h +++ b/opal/threads/mutex.h @@ -25,6 +25,11 @@ #define OPAL_MUTEX_H 1 #include "opal_config.h" + +#ifdef HAVE_STDBOOL_H +#include +#endif + #if OMPI_HAVE_THREAD_SUPPORT #include "opal/sys/atomic.h" #endif /* OMPI_HAVE_THREAD_SUPPORT */