Use the scope resolution operator :::
int my_foo( int val ){
// Call the global function 'my_foo'
return ::my_foo(val);
}
Use the scope resolution operator :::
int my_foo( int val ){
// Call the global function 'my_foo'
return ::my_foo(val);
}