CMake/Tests/LibName/foobar.c

11 lines
101 B
C
Raw Normal View History

2006-11-30 01:45:55 +03:00
#ifdef _WIN32
__declspec(dllimport)
2006-11-30 01:45:55 +03:00
#endif
extern void bar();
2006-11-30 17:51:07 +03:00
int main()
{
bar();
return 0;
}