summaryrefslogtreecommitdiff
path: root/test cases/common/6 linkshared/cpplib.cpp
blob: 8b3e0d25aa807c02d8549c61cded429ff2cb9811 (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() {
    return 42;
}