From 68dc240777c38fbba80c44ed6b2d755503610ec2 Mon Sep 17 00:00:00 2001 From: luveti <4952718+luveti@users.noreply.github.com> Date: Sun, 8 Feb 2026 11:40:22 -0500 Subject: [PATCH] Include termios.h instead of termio.h termio.h was removed from glibc in version 2.42 (released in July 2025) --- pts/tty0tty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pts/tty0tty.c b/pts/tty0tty.c index a3ce10b..ae829ef 100644 --- a/pts/tty0tty.c +++ b/pts/tty0tty.c @@ -35,7 +35,7 @@ #ifdef __APPLE__ #include #else -#include +#include #endif static char buffer[1024];