aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/link-staticlibs-dynamiclibs/static1.cpp
blob: 320344f91b212a881f6942aabc53cf4c209a5695 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "../dllexport.h"

#include <cstdio>

DLL_IMPORT int dynamic1_hello();

void static1_hello()
{
    int n = dynamic1_hello();
    std::printf("static%d says hello!\n", n);
}