Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make sure that amok test files (which are not converted to tesh yet) are made executa...
[simgrid.git] / doc / gtut-files / 01-bones.c
1 #include <gras.h>
2
3 int client(int argc, char *argv[]) {
4   gras_init(&argc,argv);
5
6   /* Your own code for the client process */
7   
8   gras_exit();
9   return 0;
10 }
11
12 int server(int argc, char *argv[]) {
13   gras_init(&argc,argv);
14
15   /* Your own code for the server process */
16   
17   gras_exit();
18   return 0;
19 }