mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
Style fixes
This commit is contained in:
parent
ecc4c62066
commit
1491b31e18
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=101471
@ -100,21 +100,18 @@ static const struct lc_time_T _C_time_locale = {
|
||||
};
|
||||
|
||||
struct lc_time_T *
|
||||
__get_current_time_locale(void) {
|
||||
__get_current_time_locale(void)
|
||||
{
|
||||
return (_time_using_locale
|
||||
? &_time_locale
|
||||
: (struct lc_time_T *)&_C_time_locale);
|
||||
}
|
||||
|
||||
int
|
||||
__time_load_locale(const char *name) {
|
||||
|
||||
int ret;
|
||||
|
||||
ret = __part_load_locale(name, &_time_using_locale,
|
||||
__time_load_locale(const char *name)
|
||||
{
|
||||
return (__part_load_locale(name, &_time_using_locale,
|
||||
time_locale_buf, "LC_TIME",
|
||||
LCTIME_SIZE, LCTIME_SIZE,
|
||||
(const char **)&_time_locale);
|
||||
|
||||
return (ret);
|
||||
(const char **)&_time_locale));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user