X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/93b0e262565ee62951b93582814854aafd37aab9..996be9435416557e2c1b20cbf462848b475d168d:/teshsuite/smpi/coll-reduce/coll-reduce.c diff --git a/teshsuite/smpi/coll-reduce/coll-reduce.c b/teshsuite/smpi/coll-reduce/coll-reduce.c index b7da72ae68..3cc84b882f 100644 --- a/teshsuite/smpi/coll-reduce/coll-reduce.c +++ b/teshsuite/smpi/coll-reduce/coll-reduce.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2010, 2013-2014. 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 @@ -10,25 +10,19 @@ #include #include "mpi.h" -#ifndef EXIT_SUCCESS -#define EXIT_SUCCESS 0 -#define EXIT_FAILURE 1 -#endif - int main(int argc, char *argv[]) { - int rank, size; + int rank; + int size; int i; - unsigned long long *sb; - unsigned long long *rb; int status; MPI_Init(&argc, &argv); MPI_Comm_rank(MPI_COMM_WORLD, &rank); MPI_Comm_size(MPI_COMM_WORLD, &size); - sb = (unsigned long long *) xbt_malloc(size * sizeof(unsigned long long)); - rb = (unsigned long long *) xbt_malloc(size * sizeof(unsigned long long)); + unsigned long long* sb = (unsigned long long *) xbt_malloc(size * sizeof(unsigned long long)); + unsigned long long* rb = (unsigned long long *) xbt_malloc(size * sizeof(unsigned long long)); for (i = 0; i < size; ++i) { sb[i] = rank*size + i;