Sign in
cobalt
/
cobalt.git
/
25902c6cb1ab9cfd8ae2ee6b0fb52953f73deda5
/
.
/
third_party
/
musl
/
src
/
termios
/
tcsetwinsize.c
blob: e01d0e2546a974bfdc5300e480248a57395e89a9 [
file
]
#include
<termios.h>
#include
<sys/ioctl.h>
#include
"syscall.h"
int
tcsetwinsize
(
int
fd
,
const
struct
winsize
*
wsz
)
{
return
syscall
(
SYS_ioctl
,
fd
,
TIOCSWINSZ
,
wsz
);
}