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