summaryrefslogtreecommitdiffstats
path: root/Tests/ExportImport/Export/testLib4.c
blob: 0e583b176ce5074cab14d4f0f5225f7c51b91723 (plain)
1
2
3
4
5
6
7
8
9
10
#if defined(_WIN32) || defined(__CYGWIN__)
#define testLib4_EXPORT __declspec(dllexport)
#else
#define testLib4_EXPORT
#endif

testLib4_EXPORT int testLib4(void)
{
  return 0;
}