Index: fusl/src/termios/tcsendbreak.c |
diff --git a/fusl/src/termios/tcsendbreak.c b/fusl/src/termios/tcsendbreak.c |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b6df0a23a302431b079f5a02d49fd7bb6422e5b4 |
--- /dev/null |
+++ b/fusl/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); |
+} |