blob: e01d0e2546a974bfdc5300e480248a57395e89a9 [file] [log] [blame]
#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);
}