Skip to content

Commit 052dca1

Browse files
authored
Merge pull request #13471 from devreal/redundant-mpi-recv-c-v6.0.x
Fix redundant declaration of MPI_Recv_c [v6.0.x]
2 parents c020d3a + cecd4e2 commit 052dca1

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

ompi/include/mpi.h.in

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2195,8 +2195,6 @@ OMPI_DECLSPEC int MPI_Recv(void *buf, int count, MPI_Datatype datatype, int sou
21952195
int tag, MPI_Comm comm, MPI_Status *status);
21962196
OMPI_DECLSPEC int MPI_Recv_c(void *buf, MPI_Count count, MPI_Datatype datatype, int source,
21972197
int tag, MPI_Comm comm, MPI_Status *status);
2198-
OMPI_DECLSPEC int MPI_Recv_c(void *buf, MPI_Count count, MPI_Datatype datatype, int source,
2199-
int tag, MPI_Comm comm, MPI_Status *status);
22002198
OMPI_DECLSPEC int MPI_Reduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
22012199
MPI_Op op, int root, MPI_Comm comm);
22022200
OMPI_DECLSPEC int MPI_Reduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,
@@ -3371,8 +3369,6 @@ OMPI_DECLSPEC int PMPI_Recv(void *buf, int count, MPI_Datatype datatype, int so
33713369
int tag, MPI_Comm comm, MPI_Status *status);
33723370
OMPI_DECLSPEC int PMPI_Recv_c(void *buf, MPI_Count count, MPI_Datatype datatype, int source,
33733371
int tag, MPI_Comm comm, MPI_Status *status);
3374-
OMPI_DECLSPEC int PMPI_Recv_c(void *buf, MPI_Count count, MPI_Datatype datatype, int source,
3375-
int tag, MPI_Comm comm, MPI_Status *status);
33763372
OMPI_DECLSPEC int PMPI_Reduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype,
33773373
MPI_Op op, int root, MPI_Comm comm);
33783374
OMPI_DECLSPEC int PMPI_Reduce_c(const void *sendbuf, void *recvbuf, MPI_Count count, MPI_Datatype datatype,

0 commit comments

Comments
 (0)