summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/tcsetpgrp.c
blob: 8cf3165c2f8757b493b0a6b48e2c388f0c02c045 (plain)
1
2
3
4
5
6
7
8
#include <termios.h>
#include <sys/ioctl.h>
#include <unistd.h>

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