blob: 2baa49ae8a067f60e831616e5519ae7da105000f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
libc {
GLIBC_2.0 {
# functions with special/multiple interfaces
_longjmp; __sigsetjmp; _setjmp;
# l*
longjmp;
# s*
setjmp;
}
GLIBC_PRIVATE {
# helper functions
__libc_longjmp; __libc_siglongjmp;
}
}
|