summaryrefslogtreecommitdiff
path: root/projects/sample/tools/sample/main.c
blob: ec0c3df605e9eab5247ee5636975b76b6a5a1178 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "sample.h"
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

int
main (int argc, char ** argv)
{
  printf ("%d\n", compute_sample (5));
  exit (0);
}