mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-08 03:07:03 +00:00
28 lines
979 B
C
28 lines
979 B
C
/*****************************************************************************
|
|
* CVS File Information :
|
|
* $RCSfile$
|
|
* Author: patmiller $
|
|
* Date: 2007/06/11 14:12:49 $
|
|
* Revision: 1.2 $
|
|
****************************************************************************/
|
|
/****************************************************************************/
|
|
/* FILE ****************** MPI_Attr_get.c ************************/
|
|
/****************************************************************************/
|
|
/* Author : Lisa Alano July 18 2002 */
|
|
/* Copyright (c) 2002 University of California Regents */
|
|
/****************************************************************************/
|
|
|
|
#include "mpi.h"
|
|
|
|
/* STUB */
|
|
int MPI_Attr_get (
|
|
MPI_Comm comm,
|
|
int keyval,
|
|
void *attr_value,
|
|
int *flag )
|
|
{
|
|
_MPI_COVERAGE();
|
|
return PMPI_Attr_get(comm, keyval, attr_value, flag);
|
|
}
|
|
|