blob: fe88a1b389444fe97429773c9b8a0af2e191f22e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
libBrokenLocale {
GLIBC_2.0 {
__ctype_get_mb_cur_max;
}
}
libc {
GLIBC_2.0 {
# global variables
__collate_element_hash; __collate_element_strings;
__collate_symbol_classes; __collate_symbol_hash; __collate_symbol_strings;
_libc_intl_domainname; _nl_current_LC_COLLATE; _nl_current_LC_CTYPE;
# functions used in inline functions or macros
__ctype_get_mb_cur_max;
# l*
localeconv;
# n*
nl_langinfo;
# s*
setlocale;
}
GLIBC_2.1 {
# functions from the experimental locale implementation
__*_l; __newlocale; __duplocale; __freelocale;
}
GLIBC_2.2 {
# The data structure changed.
localeconv;
}
}
|