Sign in
cobalt
/
cobalt
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
termios
/
tcsetattr.c
blob: 94df18f91e1718b034303c32b8ee919808ac9f9c [
file
] [
log
] [
blame
]
#include
<termios.h>
#include
<sys/ioctl.h>
#include
<errno.h>
int
tcsetattr
(
int
fd
,
int
act
,
const
struct
termios
*
tio
)
{
if
(
act
<
0
||
act
>
2
)
{
errno
=
EINVAL
;
return
-
1
;
}
return
ioctl
(
fd
,
TCSETS
+
act
,
tio
);
}