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