Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
120 B
C++
Raw Permalink Normal View History

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