Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
first try at killing GRAS -- does not compile yet
[simgrid.git] / doc / gtut-files / 01-bones.c
diff --git a/doc/gtut-files/01-bones.c b/doc/gtut-files/01-bones.c
deleted file mode 100644 (file)
index 85ff3e2..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <gras.h>
-
-int client(int argc, char *argv[]) {
-  gras_init(&argc,argv);
-
-  /* Your own code for the client process */
-  
-  gras_exit();
-  return 0;
-}
-
-int server(int argc, char *argv[]) {
-  gras_init(&argc,argv);
-
-  /* Your own code for the server process */
-  
-  gras_exit();
-  return 0;
-}