source: trunk/minix/lib/posix/_tcflow.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 238 bytes
Line 
1/*
2posix/_tcflow.c
3
4Created: June 8, 1993 by Philip Homburg
5*/
6
7#define tcflow _tcflow
8#define ioctl _ioctl
9#include <termios.h>
10#include <sys/ioctl.h>
11
12int tcflow(fd, action)
13int fd;
14int action;
15{
16 return(ioctl(fd, TCFLOW, &action));
17}
Note: See TracBrowser for help on using the repository browser.