libc/newlib/libc/sys/sysvi386/tcsetattr.c

8 lines
121 B
C
Raw Normal View History

2000-02-17 20:39:52 +01:00
#include <sys/termios.h>
int
tcsetattr (int fd, int opts, const struct termios *tp) {
return _ioctl (fd, opts, tp);
}