summaryrefslogtreecommitdiffstats
path: root/testff/hello_client.c
blob: 406e5747d05fc024812d5ffed2d4580c965b0bc4 (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
  printf("Hello I am the client\n");
  return EXIT_SUCCESS;
}