From 661977b6f44652cf7d14c38e4b888c51e399cdd4 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sat, 15 Aug 2020 12:33:24 -0400 Subject: sadly Linux-specific implementation --- src/termios/tcflow.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/termios/tcflow.c') diff --git a/src/termios/tcflow.c b/src/termios/tcflow.c index 05898373..41fdcfbc 100644 --- a/src/termios/tcflow.c +++ b/src/termios/tcflow.c @@ -1,9 +1,9 @@ #include +#include "_termios.h" int tcflow(int fildes, int action) { - (void)fildes; - return action; + return ioctl(fildes, TCXONC, action); } /* -- cgit v1.2.1