aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/plugin-dependency/plugin2.cpp
blob: 9efc83e2bd3d0ae7779a687b75a2d162501a71b6 (plain)
1
2
3
4
5
6
7
#include "../dllexport.h"
#include <cstdio>

DLL_EXPORT void plugin2_hello()
{
    std::puts("plugin2 says hello!");
}