00001 /* tcsendbreak() - send a break Author: Kees J. Bot 00002 * 13 Jan 1994 00003 */ 00004 #define tcsendbreak _tcsendbreak 00005 #define ioctl _ioctl 00006 #include <termios.h> 00007 #include <sys/ioctl.h> 00008 00009 int tcsendbreak(int fd, int duration) 00010 { 00011 return(ioctl(fd, TCSBRK, &duration)); 00012 }
1.4.6