summaryrefslogtreecommitdiffstats
path: root/Tests/ExportImport/Export/testLib4.c
blob: 2031a4fd7da83eaa13748517973d06429548f47e (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;
}