1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-14 02:08:27 +08:00

FindMPI: Make tests valid C89 by returning 0

This commit is contained in:
Christian Pfeiffer
2019-05-06 18:42:28 +02:00
parent 521ea77fc0
commit c499eccc5c
2 changed files with 2 additions and 0 deletions

View File

@@ -16,4 +16,5 @@ int main(int argc, char* argv[])
#else
puts(mpilibver_str);
#endif
return 0;
}

View File

@@ -34,4 +34,5 @@ int main(int argc, char* argv[])
MPI_Init(&argc, &argv);
MPI_Finalize();
#endif
return 0;
}