aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/app-without-sources/b.c
blob: e3841fa326d064606614abcc49fc45cb91b61e63 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

int foo();  // defined in a.cpp

int main()
{
    printf("The answer is %d.\n", foo());
    return 0;
}