Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
factoring cmake
[simgrid.git] / examples / smpi / tracing / smpi_traced_simple.c
diff --git a/examples/smpi/tracing/smpi_traced_simple.c b/examples/smpi/tracing/smpi_traced_simple.c
deleted file mode 100644 (file)
index 027c5f8..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-/* Copyright (c) 2012, 2014. 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 <stdio.h>
-#include <mpi.h>
-
-int main(int argc, char *argv[])
-{
-  MPI_Init(&argc, &argv);
-  MPI_Barrier (MPI_COMM_WORLD);
-  MPI_Finalize();
-  return 0;
-}