c++如何调用空间下的函数

请问其他cpp文件如何调用以下的initUser0函数:
#.h文件
namespace android {
namespace vold {
...
binder::Status initUser0();
...
 }
}
#.c文件
namespace android {
namespace vold {
...
binder::Status VoldNativeService initUser0() {
...
}
 }
}

作用域运算符访问