summaryrefslogtreecommitdiff
path: root/projects/sample/tools/sample/main.c
blob: 66073352de06b6534033c2b46fbcb284ef4aba52 (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);
}