blob: d31fcc8825962b73a360f45d43e60daa59c3bec9 [file] [log] [blame]
#include <termios.h>
#include <sys/ioctl.h>
int tcflow(int fd, int action) {
return ioctl(fd, TCXONC, action);
}