blob: 10c962d9ea9106094b9ba6a54a2581ad1df43b7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
libc {
GLIBC_2.0 {
# global variables
_errno;
# helper functions
__libc_init_first; __libc_start_main;
# variables in normal name space
errno;
}
GLIBC_2.1 {
# New special glibc functions.
gnu_get_libc_release; gnu_get_libc_version;
}
}
|