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

int bar();

int foo()
{
    printf("This is foo()!\n");
    return 12 + bar();
}