home *** CD-ROM | disk | FTP | other *** search
/ Serving the Web / ServingTheWeb1995.disc1of1.iso / linux / slacksrce / d / libc / libc-4.6 / libc-4 / libc-linux / posix / tcflow.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-11-15  |  136 b   |  9 lines

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