mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-20 11:11:24 +00:00
2f04ec53cc
split modules to bring only neccessary functions, eliminate sprintf, make reduced startup_locale version.
15 lines
429 B
C
15 lines
429 B
C
#define categories _categories
|
|
extern char *_categories[_LC_LAST];
|
|
|
|
#define current_categories _current_categories
|
|
extern char _current_categories[_LC_LAST][32];
|
|
|
|
#define new_categories _new_categories
|
|
extern char _new_categories[_LC_LAST][32];
|
|
|
|
#define current_locale_string _current_locale_string
|
|
extern char _current_locale_string[_LC_LAST * 33];
|
|
|
|
#define currentlocale _currentlocale
|
|
extern char *_currentlocale __P((void));
|