Sign in
mojo
/
mojo-tools
/
2d4da54579bbcc2b37c28393fab8e3b25aee5e7f
/
.
/
fusl
/
src
/
termios
/
tcsendbreak.c
blob: 0c42e678514bc4573f4e19a31b7e8d52c6bc559a [
file
]
#include
<termios.h>
#include
<sys/ioctl.h>
int
tcsendbreak
(
int
fd
,
int
dur
)
{
/* nonzero duration is implementation-defined, so ignore it */
return
ioctl
(
fd
,
TCSBRK
,
0
);
}