Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
unistd
tcsetpgrp.c
pretty
plain
permalink
blame
history
•
9 lines
•
166 B
1
#include <unistd.h>
2
#include <termios.h>
3
#include <sys/ioctl.h>
4
5
int tcsetpgrp(int fd, pid_t pgrp)
6
{
7
	int pgrp_int = pgrp;
8
	return ioctl(fd, TIOCSPGRP, &pgrp_int);
9
}