1 /* Author:  Lisandro Dalcin   */
2 /* Contact: dalcinl@gmail.com */
3 
4 #ifndef MPI_COMPAT_H
5 #define MPI_COMPAT_H
6 
7 #include <mpi.h>
8 
9 #if (MPI_VERSION < 3) && !defined(PyMPI_HAVE_MPI_Message)
10 typedef void *PyMPI_MPI_Message;
11 #define MPI_Message PyMPI_MPI_Message
12 #endif
13 
14 #endif/*MPI_COMPAT_H*/
15