Sign in
mojo
/
mojo-testing
/
2b9bfa7f95a3a0b6f10edd3cac33ae40587b7bbc
/
.
/
fusl
/
src
/
termios
/
tcflush.c
blob: d9c2c641d940f4386e4129f442395de3fb52f722 [
file
] [
log
] [
blame
]
#include
<termios.h>
#include
<sys/ioctl.h>
int
tcflush
(
int
fd
,
int
queue
)
{
return
ioctl
(
fd
,
TCFLSH
,
queue
);
}