initial version of mips (o32) port, based on work by Richard Pennington (rdp)
[musl] / src / unistd / tcsetpgrp.c
1 #include <unistd.h>
2 #include <termios.h>
3 #include <sys/ioctl.h>
4
5 int tcsetpgrp(int fd, pid_t pgrp)
6 {
7         int pgrp_int = pgrp;
8         return ioctl(fd, TIOCSPGRP, &pgrp_int);
9 }