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)
#endif
2006-11-30 05:53:52 +03:00
extern void bar();
2006-11-30 17:51:07 +03:00
int main()
{
bar();
return 0;
}