minix/lib/posix/_tcflow.c

18 lines
238 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
/*
posix/_tcflow.c
Created: June 8, 1993 by Philip Homburg
*/
#define tcflow _tcflow
#define ioctl _ioctl
#include <termios.h>
#include <sys/ioctl.h>
int tcflow(fd, action)
int fd;
int action;
{
return(ioctl(fd, TCFLOW, &action));
}