https://github.com/Kitware/CMake
Raw File
Tip revision: 66f7d9e6e03f4b38bbd5e456fa32397d809f5bfb authored by Brad King on 12 June 2023, 17:24:29 UTC
CMake 3.27.0-rc2
Tip revision: 66f7d9e
mycxx.cxx
extern "C" int myc(void);
extern "C" int mycxx(void)
{
  delete new int;
  return myc();
}
back to top