minix/lib/posix/_tcsendbreak.c
2009-11-09 10:26:00 +00:00

13 lines
261 B
C

/* tcsendbreak() - send a break Author: Kees J. Bot
* 13 Jan 1994
*/
#define tcsendbreak _tcsendbreak
#define ioctl _ioctl
#include <termios.h>
#include <sys/ioctl.h>
int tcsendbreak(int fd, int duration)
{
return(ioctl(fd, TCSBRK, &duration));
}