Sign in
cobalt
/
cobalt
/
b95ea55ccebda33f820d043e4b4dc85c10d7584d
/
.
/
third_party
/
musl
/
src
/
termios
/
tcsendbreak.c
blob: b6df0a23a302431b079f5a02d49fd7bb6422e5b4 [
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
);
}