root/orte/test/mpi/init-exit77.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. main

   1 #include <stdio.h>
   2 #include <stdlib.h>
   3 #include "mpi.h"
   4 
   5 int main(int argc, char **argv) {
   6    int debugme = 1;
   7 
   8    MPI_Init(&argc, &argv);
   9    printf("init...\n");
  10    fflush(0);
  11    MPI_Finalize();
  12    exit(77);
  13 }

/* [<][>][^][v][top][bottom][index][help] */