Adding in sample project tree.
[oota-llvm.git] / projects / sample / tools / sample / main.c
1 #include <stdio.h>
2 #include <stdlib.h>
3
4 #include <unistd.h>
5
6 #include "sample.h"
7
8 int
9 main (int argc, char ** argv)
10 {
11         printf ("%d\n", compute_sample (5));
12         exit (0);
13 }
14