blob: 0531162c4fc85f7e577b3132c544e2e57a04801c [file] [log] [blame]
#include <sys/ioctl.h>
#include <termios.h>
int tcsendbreak(int fd, int dur) {
/* nonzero duration is implementation-defined, so ignore it */
return ioctl(fd, TCSBRK, 0);
}