diff --git a/src/kernel/libroot/posix/termios.c b/src/kernel/libroot/posix/termios.c index 0cda2b7049..5e64886f5b 100644 --- a/src/kernel/libroot/posix/termios.c +++ b/src/kernel/libroot/posix/termios.c @@ -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; +}