master
1#include <termios.h>
2#include <sys/ioctl.h>
3
4int tcflow(int fd, int action)
5{
6	return ioctl(fd, TCXONC, action);
7}