Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
termios
tcflow.c
pretty
plain
permalink
blame
history
•
7 lines
•
115 B
1
#include <termios.h>
2
#include <sys/ioctl.h>
3
4
int tcflow(int fd, int action)
5
{
6
	return ioctl(fd, TCXONC, action);
7
}