コード例 #1
0
ファイル: xlocale.c プロジェクト: alexandermerritt/dragonfly
locale_t
__get_locale(void)
{
	locale_t l = get_thread_locale();
	return (l ? l : &__xlocale_global_locale);

}
コード例 #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
}