• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <termios.h>
2 #include <sys/ioctl.h>
3 
tcflow(int fd,int action)4 int tcflow(int fd, int action)
5 {
6 	return ioctl(fd, TCXONC, action);
7 }
8