https://github.com/Kitware/CMake
Raw File
Tip revision: 177fc020731bcee747295573c92cd0f7ca200e53 authored by Brad King on 22 September 2020, 12:53:09 UTC
CMake 3.18.3
Tip revision: 177fc02
shared.cpp
extern "C" int bar(void);
void baz();

int shared()
{
  baz();
  return bar();
}
back to top