mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 20:49:41 +00:00
11 lines
112 B
C
11 lines
112 B
C
#ifdef _WIN32
|
|
__declspec(dllimport)
|
|
#endif
|
|
void bar();
|
|
|
|
int main(int ac, char** av)
|
|
{
|
|
bar();
|
|
return 0;
|
|
}
|