summaryrefslogtreecommitdiff
path: root/src/unistd/tcsetpgrp.c
blob: 6e85e65221117d4aa214b92ba15d446c14e512ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <sys/types.h>
#include <unistd.h>
#include <termios/_termios.h>

int tcsetpgrp(int fildes, pid_t pgid_id)
{
	return ioctl(fildes, TIOCSPGRP, &pgid_id);
}

/*
POSIX(1)
*/