about summary refs log tree commit diff
path: root/tests/run-make/redundant-libs/foo.c
blob: 551b85d1824505c0bd14f757ca2f66dd289cd332 (plain)
1
2
3
4
5
6
7
8
#ifdef _MSC_VER
#define DllExport __declspec(dllexport)
#else
#define DllExport
#endif

DllExport void foo1() {}
DllExport void foo2() {}