aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/overrideProjectProperties/main2.cpp
blob: b962b310606cc9719b34dd19d4153e94aa338677 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#if defined(_WIN32)
#   define IMPORT __declspec(dllimport)
#else
#   define IMPORT
#endif

void IMPORT helperFunc();

int main()
{
    helperFunc();
    return 0;
}