aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/6 linkshared/cpplib.cpp
blob: 395859d271e5f25e54738e7d65f63beb2d813903 (plain)
1
2
3
4
5
6
7
8
9
#if defined _WIN32
    #define DLL_PUBLIC __declspec(dllexport)
#else
    #define DLL_PUBLIC __attribute__ ((visibility ("default")))
#endif

int DLL_PUBLIC cppfunc(void) {
    return 42;
}