mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 21:00:05 +00:00
169ec09e54
* include/locale.h (_nl_C_locobj): Declare as hidden. * time/asctime.c (_nl_C_LC_TIME): Declare as hidden. * time/strptime.c (_nl_C_LC_TIME): Likewise. * include/netinet/in.h (in6addr_any_internal): Mark as hidden. * include/sys/gmon.h: Declare _gmonparam as hidden. * locale/lc-ctype.c (__ctype32_wctype): Declare as hidden. (__ctype32_wctrans): Likewise. (__ctype32_width): Likewise.
16 lines
395 B
C
16 lines
395 B
C
#ifndef _LOCALE_H
|
|
#include <locale/locale.h>
|
|
|
|
/* This has to be changed whenever a new locale is defined. */
|
|
#define __LC_LAST 13
|
|
|
|
extern struct loaded_l10nfile *_nl_locale_file_list[] attribute_hidden;
|
|
|
|
/* Locale object for C locale. */
|
|
extern struct __locale_struct _nl_C_locobj attribute_hidden;
|
|
|
|
/* Now define the internal interfaces. */
|
|
extern struct lconv *__localeconv (void);
|
|
|
|
#endif
|