opnsense-src/packages/Python/lldbsuite/test/expression_command/options/foo.cpp

12 lines
119 B
C++
Raw Normal View History

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