Sign in
mojo
/
mojo-tools
/
4ade0ed278a8a25b32ded431c3c7859899115b53
/
.
/
fusl
/
src
/
termios
/
tcsendbreak.c
blob: 0c42e678514bc4573f4e19a31b7e8d52c6bc559a [
file
] [
log
] [
blame
]
#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
);
}