From 43edafd0885479474cfa61935170955805e94ad4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20H=C3=B6ppner?= Date: Wed, 26 Nov 2025 12:03:37 +0100 Subject: [PATCH] iucvterm/tests: Remove unused termio.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The inclusion of termio.h leads to the following compilation error: CC iucvterm/tests/test_functions.o test_functions.c:16:10: fatal error: termio.h: No such file or directory 16 | #include | ^~~~~~~~~~ The termio ioctl interface has been obsolete for a very long time and was replaced by termios. termio.h was still present for compatibility but was removed with glibc 2.42. iucvterm uses termios.h correctly in the tool. The test however not only includes termio.h erroneously, it doesn't even require it. Remove the inclusion of termio.h. Reviewed-by: Marc Hartmayer Signed-off-by: Jan Höppner --- iucvterm/test/test_functions.c | 1 - 1 file changed, 1 deletion(-) diff --git a/iucvterm/test/test_functions.c b/iucvterm/test/test_functions.c index 3d17fa35..b959a2f0 100644 --- a/iucvterm/test/test_functions.c +++ b/iucvterm/test/test_functions.c @@ -13,7 +13,6 @@ #include #include #include -#include #include #include "iucvterm/functions.h"