summaryrefslogtreecommitdiff
path: root/lib/libc/termios/tcflow.c
blob: a10455d19e5c782c76fe2edd6faad05230cd24f1 (plain)
1
2
3
4
5
6
7
#include <asm-generic/ioctls.h>
#include <syscall.h>

int tcflow(int fildes, int action)
{
	return syscall(ioctl, fildes, TCXONC, action);
}