2024-04-14 22:45:38 +02:00

11 lines
103 B
C

#if defined(_WIN32)
__declspec(dllimport)
#endif
void func_c(void);
void lib(void)
{
func_c();
}