Sign in
android
/
platform
/
external
/
musl
/
refs/heads/android13-d2-release
/
.
/
src
/
termios
/
tcgetwinsize.c
blob: 9b3a65a40d3ee5dfd680a7ba1711291294970232 [
file
] [
log
] [
blame
] [
edit
]
#include
<termios.h>
#include
<sys/ioctl.h>
#include
"syscall.h"
int
tcgetwinsize
(
int
fd
,
struct
winsize
*
wsz
)
{
return
syscall
(
SYS_ioctl
,
fd
,
TIOCGWINSZ
,
wsz
);
}