blob: 8e89ac922ea2f242c5922982b94f063e62c8c153 [file] [log] [blame]
#include <unistd.h>
#include <termios.h>
#include <sys/ioctl.h>
pid_t tcgetpgrp(int fd) {
int pgrp;
if (ioctl(fd, TIOCGPGRP, &pgrp) < 0)
return -1;
return pgrp;
}