Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
termios
tcsetwinsize.c
pretty
plain
permalink
blame
history
•
8 lines
•
171 B
1
#include <termios.h>
2
#include <sys/ioctl.h>
3
#include "syscall.h"
4
5
int tcsetwinsize(int fd, const struct winsize *wsz)
6
{
7
	return syscall(SYS_ioctl, fd, TIOCSWINSZ, wsz);
8
}