19 строки
376 B
C
19 строки
376 B
C
|
/*
|
||
|
* $HEADER$
|
||
|
*/
|
||
|
|
||
|
#include "lam_config.h"
|
||
|
|
||
|
#include "mpi.h"
|
||
|
#include "mpi/interface/c/bindings.h"
|
||
|
|
||
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
||
|
#pragma weak MPI_File_get_view = PMPI_File_get_view
|
||
|
#endif
|
||
|
|
||
|
int MPI_File_get_view(MPI_File fh, MPI_Offset *disp,
|
||
|
MPI_Datatype *etype,
|
||
|
MPI_Datatype *filetype, char *datarep) {
|
||
|
return MPI_SUCCESS;
|
||
|
}
|