Sign in
mojo
/
mojo-tools
/
bbc0e088b4a3b02a89b563db78314a89d560be7f
/
.
/
fusl
/
src
/
termios
/
tcflow.c
blob: d31fcc8825962b73a360f45d43e60daa59c3bec9 [
file
]
#include
<termios.h>
#include
<sys/ioctl.h>
int
tcflow
(
int
fd
,
int
action
)
{
return
ioctl
(
fd
,
TCXONC
,
action
);
}