. pci driver now returns devices, even when they have been pci_reserve()d
[minix3.git] / lib / posix / _tcflow.c
blobc85e206725230bceb75b8d50e42aedb152aa5be0
1 /*
2 posix/_tcflow.c
4 Created: June 8, 1993 by Philip Homburg
5 */
7 #define tcflow _tcflow
8 #define ioctl _ioctl
9 #include <termios.h>
10 #include <sys/ioctl.h>
12 int tcflow(fd, action)
13 int fd;
14 int action;
16 return(ioctl(fd, TCFLOW, &action));