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.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/termios/tcsendbreak.c b/src/termios/tcsendbreak.c
new file mode 100644
index 00000000..b6df0a23
--- /dev/null
+++ b/src/termios/tcsendbreak.c
@@ -0,0 +1,8 @@
+#include <termios.h>
+#include <sys/ioctl.h>
+
+int tcsendbreak(int fd, int dur)
+{
+ /* nonzero duration is implementation-defined, so ignore it */
+ return ioctl(fd, TCSBRK, 0);
+}