llvm/lldb/test/API/commands/expression/options/foo.cpp

namespace ns {
    int func(void)
    {
        return 0;
    }
}

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