llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_options/foo.cpp

13 lines
120 B
C++

namespace ns {
int func(void)
{
return 0;
}
}
extern "C" int foo(void)
{
return ns::func();
}