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

#include <unistd.h>

#include "sample.h"

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