mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-28 09:59:20 -05:00
0951b1fe07
Fixes: #20836
13 lines
108 B
C
13 lines
108 B
C
|
|
#if defined(_WIN32)
|
|
__declspec(dllimport)
|
|
#endif
|
|
void func_c();
|
|
|
|
int main()
|
|
{
|
|
func_c();
|
|
|
|
return 0;
|
|
}
|