blob: f7d0769960a7bffde4d8ecf3ee3227f02f00dcc6 [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);
}