blob: 524b5b22fadd5c58b93a360bc79b4075a9b5d2e5 [file] [log] [blame]
#ifdef _WIN32
__declspec(dllimport)
#endif
extern void lib2(void);
#ifdef _WIN32
__declspec(dllexport)
#endif
void lib1(void)
{
lib2();
}