summaryrefslogtreecommitdiff
path: root/src/termios/tcflow.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/termios/tcflow.c')
-rw-r--r--src/termios/tcflow.c4
1 files changed, 2 insertions, 2 deletions
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 <termios.h>
+#include "_termios.h"
int tcflow(int fildes, int action)
{
- (void)fildes;
- return action;
+ return ioctl(fildes, TCXONC, action);
}
/*