tcflow.c 115 B

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