aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/sameBaseName/main.c
blob: 07da203074a35964f1ad5e40dce774f771f5305b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
extern void printHelloC();
extern void printHelloCpp();

#ifdef __APPLE__
extern void printHelloObjc();
extern void printHelloObjcpp();
#endif

int main()
{
    printHelloC();
    printHelloCpp();
#ifdef __APPLE__
    printHelloObjc();
    printHelloObjcpp();
#endif
    return 0;
}