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