From e865b7524158e76626660d87251243489a586135 Mon Sep 17 00:00:00 2001 From: David Daniel Date: Sun, 15 Aug 2004 23:54:30 +0000 Subject: [PATCH] fixes for Solaris This commit was SVN r2155. --- include/ompi_config_bottom.h | 2 +- include/ompi_stdint.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/ompi_config_bottom.h b/include/ompi_config_bottom.h index f195aa246f..5d08d092ae 100644 --- a/include/ompi_config_bottom.h +++ b/include/ompi_config_bottom.h @@ -44,7 +44,7 @@ extern bool ompi_mpi_param_check; /* * Do we have ? */ -#if HAVE_STDINT_H +#ifdef HAVE_STDINT_H #include #else #include "ompi_stdint.h" diff --git a/include/ompi_stdint.h b/include/ompi_stdint.h index a58c1873e6..6d9b3f7833 100644 --- a/include/ompi_stdint.h +++ b/include/ompi_stdint.h @@ -21,11 +21,11 @@ * Include what we can and define what is missing. */ -#if HAVE_INTTYPES_H +#ifdef HAVE_INTTYPES_H #include #endif -#if HAVE_SYS_TYPES_H +#ifdef HAVE_SYS_TYPES_H #include #endif