r94: finished c++ conversions
[ctsim.git] / src / mpitest.c
diff --git a/src/mpitest.c b/src/mpitest.c
deleted file mode 100644 (file)
index ce118de..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#include "ct.h"
-
-int main(const int argc, char * const argv[])
-{
-  int i;
-
-#ifdef MPI_CT
-  MPI_Init(&argc, (char ***) &argv);
-#endif
-
-  for (i = 0; i < argc; i++)
-    {
-      printf("%d: %s\n", i, argv[i]);
-    }
-
-#ifdef MPI_CT
-  MPI_Finalize();
-#endif
-  return(0);
-
-}