summaryrefslogtreecommitdiffstats
path: root/tests/main.c
blob: 6252c343a0e7d3a3a6f5aa82d0515778146d506f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>

char buf[16 * 1024 * 1024];

int foo();

int main(int argc, char * * argv)
{
    int x;
    printf("Hello World\n");
    x = foo();
    printf("Result is %d\n", x);
    return x;
}