Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add missing copyright notices.
[simgrid.git] / teshsuite / smpi / io-simple-at / io-simple-at.c
index 9ad28f1..a9b6fcd 100644 (file)
@@ -1,3 +1,8 @@
+/* Copyright (c) 2019-2021. The SimGrid Team. All rights reserved.          */
+
+/* This program is free software; you can redistribute it and/or modify it
+ * under the terms of the license (GNU LGPL) which comes with this package. */
+
 #include "mpi.h"
 #include <stdio.h>
 #include <stdlib.h>
@@ -11,7 +16,6 @@ int main( int argc, char *argv[] )
     int errs = 0;
     int size;
     int rank;
-    int i;
     int* buf;
     int count;
     MPI_File fh;
@@ -54,7 +58,8 @@ int main( int argc, char *argv[] )
 
     MPI_Barrier( comm );
 
-    for (i=0; i<size; i++) buf[i] = -1;
+    for (int i = 0; i < size; i++)
+      buf[i] = -1;
     MPI_File_read_at( fh, sizeof(int)*rank, buf, 1, MPI_INT, &status );
     // if (buf[0] != rank) {
         // errs++;