Sign in
mojo
/
mojo-tools
/
4ade0ed278a8a25b32ded431c3c7859899115b53
/
.
/
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
);
}