llvm-project/llvm/projects/sample/tools/sample/main.c

15 lines
170 B
C

#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);
}