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

char buf[16 * 1024 * 1024];

int foo();

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