fix bug parsing lone zero followed by junk, and hex float over-reading
[musl] / src / termios / tcflow.c
1 #include <termios.h>
2 #include <sys/ioctl.h>
3
4 int tcflow(int fd, int action)
5 {
6         return ioctl(fd, TCXONC, action);
7 }