summaryrefslogtreecommitdiff
path: root/src/termios/tcsendbreak.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/termios/tcsendbreak.c')
-rw-r--r--src/termios/tcsendbreak.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/termios/tcsendbreak.c b/src/termios/tcsendbreak.c
new file mode 100644
index 00000000..7c728aa3
--- /dev/null
+++ b/src/termios/tcsendbreak.c
@@ -0,0 +1,10 @@
+#include <termios.h>
+
+int tcsendbreak(int fildes, int duration)
+{
+ (void)duration;
+ return fildes;
+}
+/*
+POSIX(1)
+*/