Beispiel #1
0
locale_t
__get_locale(void)
{
	locale_t l = get_thread_locale();
	return (l ? l : &__xlocale_global_locale);

}
Beispiel #2
0
locale_t
__get_locale(void)
{
#ifndef FORCE_C_LOCALE
	locale_t l = get_thread_locale();
	return (l ? l : &__xlocale_global_locale);
#else
	return (&__xlocale_global_locale);
#endif
}