summaryrefslogtreecommitdiff
path: root/src/termios/tcsendbreak.c
blob: fab5927e5877bbe1f3669ce21c5105d9ad5e92f6 (plain)
1
2
3
4
5
6
7
8
9
10
#include <termios.h>
#include "_termios.h"

int tcsendbreak(int fildes, int duration)
{
	return ioctl(fildes, TCSBRKP, duration);
}
/*
POSIX(1)
*/