blob: 0c42e678514bc4573f4e19a31b7e8d52c6bc559a [file] [log] [blame]
#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);
}