blob: c6acfb2047a986281f5230b8596d2cf09a81364f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
libc {
GLIBC_2.0 {
# functions which have an additional interface since they are
# are cancelable.
__libc_tcdrain;
# c*
cfgetispeed; cfgetospeed; cfmakeraw; cfsetispeed; cfsetospeed; cfsetspeed;
# t*
tcdrain; tcflow; tcflush; tcgetattr; tcgetpgrp; tcsendbreak; tcsetattr;
tcsetpgrp;
}
GLIBC_2.1 {
# t*
tcgetsid;
}
}
|