/* posix/_tcflow.c Created: June 8, 1993 by Philip Homburg */ #define tcflow _tcflow #define ioctl _ioctl #include #include int tcflow(fd, action) int fd; int action; { return(ioctl(fd, TCFLOW, &action)); }