musl-tcc/src/termios/tcsetattr.c

13 lines
223 B
C

#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);
}