mirror of
https://github.com/opnsense/src.git
synced 2026-03-22 10:50:09 -04:00
12 lines
120 B
C++
12 lines
120 B
C++
|
|
namespace ns {
|
|
int func(void)
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
extern "C" int foo(void)
|
|
{
|
|
return ns::func();
|
|
}
|