Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
termios
tcsendbreak.c
pretty
plain
permalink
blame
history
•
8 lines
•
176 B
1
#include <termios.h>
2
#include <sys/ioctl.h>
3
4
int tcsendbreak(int fd, int dur)
5
{
6
	/* nonzero duration is implementation-defined, so ignore it */
7
	return ioctl(fd, TCSBRK, 0);
8
}