Added empty implementations of tc{get,set}pgrp().

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11615 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2005-03-07 22:07:26 +00:00
parent 5141596a69
commit 08f3210dcf

View File

@ -134,3 +134,20 @@ cfsetospeed(struct termios *termios, speed_t speed)
return 0;
}
int
tcsetpgrp(int fd, pid_t pgrpid)
{
// ToDo: Implement!
errno = EINVAL;
return -1;
}
pid_t
tcgetpgrp(int fd)
{
// ToDo: Implement!
errno = EINVAL;
return -1;
}