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