namespace
{
//==================================================================
// DESCRIPTION: Example of a definition of an internal function,
// which shall not be declared as static.
// NOTES : Although the linkage may actually be external,
// the compiler ensures that this unnamed namespace is in fact
// a namespace with a hidden, and unique name that is a one
// to one relation with this translation unit.
//==================================================================
int
bb_ib_mod_func()
{
return bb_ib_mod_variable;
}
}