summaryrefslogtreecommitdiff
path: root/Tests/COnly/testCModule.c
blob: 1a89292b3de0372d68f0814259f3c2dfea3dcc96 (plain)
1
2
3
4
5
6
#ifdef _WIN32
# define TEST_EXPORT __declspec(dllexport)
#else
# define TEST_EXPORT
#endif
TEST_EXPORT int testCModule(void) { return 0; }