f68487016c
This commit was SVN r26271.
13 строки
189 B
C
13 строки
189 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
main(int argc, char **argv) {
|
|
int debugme = 1;
|
|
|
|
MPI_Init(&argc, argv);
|
|
printf("init...\n");
|
|
fflush(0);
|
|
MPI_Finalize();
|
|
exit(77);
|
|
}
|