9 lines
166 B
C
9 lines
166 B
C
#include <unistd.h>
|
|
#include <termios.h>
|
|
#include <sys/ioctl.h>
|
|
|
|
int tcsetpgrp(int fd, pid_t pgrp)
|
|
{
|
|
int pgrp_int = pgrp;
|
|
return ioctl(fd, TIOCSPGRP, &pgrp_int);
|
|
}
|