CMake/Tests/LibName/foobar.c

11 lines
101 B
C
Raw Normal View History

2006-11-29 17:45:55 -05:00
#ifdef _WIN32
__declspec(dllimport)
#endif
2006-11-29 21:53:52 -05:00
extern void bar();
2006-11-30 09:51:07 -05:00
int main()
{
bar();
return 0;
}