Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
EXIT_SUCCESS/EXIT_FAILURE are standard C defined in stdlib.h.
[simgrid.git] / teshsuite / smpi / coll-allreduce / coll-allreduce.c
index c35732f..a15eb60 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2009-2010, 2013-2017. The SimGrid Team.
+/* Copyright (c) 2009-2010, 2013-2018. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
 #include <errno.h>
 #include "mpi.h"
 
-#ifndef EXIT_SUCCESS
-#define EXIT_SUCCESS 0
-#define EXIT_FAILURE 1
-#endif
-
 int main(int argc, char *argv[])
 {
   int rank;
@@ -42,7 +37,6 @@ int main(int argc, char *argv[])
   for (i = 0; i < size *mult; i++)
     printf("%d ", sb[i]);
   printf("]\n");
-
   status = MPI_Allreduce(sb, rb, size *maxlen, MPI_INT, MPI_SUM, MPI_COMM_WORLD);
 
   printf("[%d] rcvbuf=[", rank);