summaryrefslogtreecommitdiff
path: root/src/unistd/tcsetpgrp.c
blob: aef0acf548ddb7dce9ea4ee3a89303d6b9e3449f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "stddef.h"
#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)
*/