563ac2a338
This commit was SVN r1191.
22 строки
411 B
C
22 строки
411 B
C
/*
|
|
* $HEADERS$
|
|
*/
|
|
#include "ompi_config.h"
|
|
#include <stdio.h>
|
|
|
|
#include "mpi.h"
|
|
#include "mpi/c/bindings.h"
|
|
|
|
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
|
#pragma weak MPI_Get_elements = PMPI_Get_elements
|
|
#endif
|
|
|
|
#if OMPI_PROFILING_DEFINES
|
|
#include "mpi/c/profile/defines.h"
|
|
#endif
|
|
|
|
int MPI_Get_elements(MPI_Status *status, MPI_Datatype datatype,
|
|
int *count) {
|
|
return MPI_SUCCESS;
|
|
}
|