a0983ab473
This commit was SVN r1055.
22 строки
392 B
C
22 строки
392 B
C
/*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "lam_config.h"
|
|
|
|
#include "mpi.h"
|
|
#include "mpi/c/bindings.h"
|
|
|
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
|
#pragma weak MPI_File_open = PMPI_File_open
|
|
#endif
|
|
|
|
#if LAM_PROFILING_DEFINES
|
|
#include "mpi/c/profile/defines.h"
|
|
#endif
|
|
|
|
int MPI_File_open(MPI_Comm comm, char *filename, int amode,
|
|
MPI_Info info, MPI_File *fh) {
|
|
return MPI_SUCCESS;
|
|
}
|