Files
cmake/Tests/FindMPI/Test/main.c
T

8 lines
98 B
C

#include <mpi.h>
int main(int argc, char** argv)
{
MPI_Init(&argc, &argv);
MPI_Finalize();
}