mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-06-22 16:28:30 +00:00
25 lines
1.0 KiB
C
25 lines
1.0 KiB
C
/*****************************************************************************
|
|
* CVS File Information :
|
|
* $RCSfile$
|
|
* Author: patmiller $
|
|
* Date: 2006/04/25 19:03:07 $
|
|
* Revision: 1.1 $
|
|
****************************************************************************/
|
|
/***********************************************************************************************/
|
|
/* FILE ************************* MPI_Abort.c ***********************************/
|
|
/***********************************************************************************************/
|
|
/* Author : Lisa Alano June 24 2002 */
|
|
/* Copyright (c) 2002 University of California Regents */
|
|
/***********************************************************************************************/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include "mpi.h"
|
|
|
|
int MPI_Abort( MPI_Comm comm, int errorcode )
|
|
{
|
|
_MPI_COVERAGE();
|
|
return PMPI_Abort(comm, errorcode);
|
|
}
|