From d53131f26132b3363f4da81cabdf7c98a7479e54 Mon Sep 17 00:00:00 2001 From: Rainer Keller Date: Mon, 18 Feb 2008 08:11:57 +0000 Subject: [PATCH] - Need stdbool.h if included in userland; additionally protect stdbool / stdarg.h This commit was SVN r17488. --- opal/util/output.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/opal/util/output.h b/opal/util/output.h index 4cb53ae8b9..46dddb9c0c 100644 --- a/opal/util/output.h +++ b/opal/util/output.h @@ -64,7 +64,12 @@ #include "opal_config.h" +#ifdef HAVE_STDARG_H #include +#endif +#ifdef HAVE_STDBOOL_H +#include +#endif #include "opal/class/opal_object.h"