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.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/termios/tcflow.c b/src/termios/tcflow.c
new file mode 100644
index 00000000..05898373
--- /dev/null
+++ b/src/termios/tcflow.c
@@ -0,0 +1,11 @@
+#include <termios.h>
+
+int tcflow(int fildes, int action)
+{
+ (void)fildes;
+ return action;
+}
+
+/*
+POSIX(1)
+*/