Files
musl/src/termios/tcflow.c

8 lines
115 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <termios.h>
#include <sys/ioctl.h>
int tcflow(int fd, int action)
{
return ioctl(fd, TCXONC, action);
}