aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/api/testdata/link-dynamiclibs-staticlibs/dynamic1.cpp
blob: aea063e2932b0b78edb6422ab64ebd747913dadb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>

#if defined(_WIN32) || defined(WIN32)
#   define EXPORT __declspec(dllexport)
#else
#   define EXPORT
#endif

void static1_hello();

EXPORT int dynamic1_hello()
{
    static1_hello();
    puts("dynamic1 says hello!");
    return 0;
}