minix/lib/posix/_tcflow.c
2005-04-21 14:53:53 +00:00

18 lines
238 B
C
Executable file

/*
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));
}