From ceee373ee6467c588c0eb35c8124cfbf4bac9265 Mon Sep 17 00:00:00 2001 From: Pablo Zubieta <8410335+pabloferz@users.noreply.github.com> Date: Wed, 13 Apr 2022 07:27:26 -0500 Subject: [PATCH] Explicitely include cstdio When compiling a library that depends on this on MacOS Monterry with gcc and OpenMPI (both installed via homebrew) the build fails because of `cstdio` missing (see [here](https://github.com/SSAGESproject/SSAGES/issues/36)). Everything works well when building with clang instead. But I saw no harm in explicitly including `cstdio`. --- include/mxx/common.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/mxx/common.hpp b/include/mxx/common.hpp index d2b32be..668114f 100644 --- a/include/mxx/common.hpp +++ b/include/mxx/common.hpp @@ -18,6 +18,7 @@ #define MXX_COMMON_HPP #include +#include #include namespace mxx {