Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill unused includes, and put the remaining ones at the top of the file.
[simgrid.git] / examples / smpi / mc / non_termination3.c
index aecd34d..0e0f56f 100644 (file)
@@ -6,10 +6,12 @@ int x = 0;
 int y = 0;
 
 int main(int argc, char **argv) {
-
-  int recv_x, recv_y, size, rank;
+  int recv_x;
+  int recv_y;
+  int size;
+  int rank;
   MPI_Status status;
-  
+
   MPI_Init(&argc, &argv);
 
   MPI_Comm_size(MPI_COMM_WORLD, &size);   /* Get nr of tasks */