summaryrefslogtreecommitdiffstats
path: root/tests/simple.c
blob: 62e6d6261936cea19c5f82e115e52d21c235a9f9 (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

char buf[16 * 1024 * 1024];

int main(int argc, char * * argv)
{
    printf("Hello World\n");
    return 0;
}