summaryrefslogtreecommitdiff
path: root/src/unistd/tcsetpgrp.c
blob: dab8b52e3fd870362b225bab6a399fe8d354de91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#if 0

#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)
*/


#endif