CMake/Tests/Visibility/shared.cpp

9 lines
81 B
C++

extern "C" int bar(void);
void baz();
int shared()
{
baz();
return bar();
}