1
1
openmpi/src/mpi/c/comm_f2c.c
Jeff Squyres 698685924b Part 2 of The Great Source Reorganization
This commit was SVN r873.
2004-03-17 17:45:44 +00:00

22 строки
363 B
C

/*
* $HEADERS$
*/
#include "lam_config.h"
#include <stdio.h>
#include "mpi.h"
#include "mpi/interface/c/bindings.h"
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
#pragma weak MPI_Comm_f2c = PMPI_Comm_f2c
#endif
MPI_Comm MPI_Comm_f2c(MPI_Fint comm) {
/*
* Anju:
* Check if what I have returned is right
*/
return MPI_COMM_NULL;
}