From df1718b0b155cee9ad58f8699f3335f879d710f2 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 17 Jul 2025 15:18:13 +0200 Subject: [PATCH] tests: Add missing stdint.h MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This is required by cmocka. Signed-off-by: Andreas Schneider Reviewed-by: Pavel Filipenský --- tests/test_ioctl.c | 1 + tests/test_sendmsg_recvmsg_fd.c | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/test_ioctl.c b/tests/test_ioctl.c index 25bec38..addcb36 100644 --- a/tests/test_ioctl.c +++ b/tests/test_ioctl.c @@ -1,5 +1,6 @@ #include #include +#include #include #include diff --git a/tests/test_sendmsg_recvmsg_fd.c b/tests/test_sendmsg_recvmsg_fd.c index 30c9861..1f8154d 100644 --- a/tests/test_sendmsg_recvmsg_fd.c +++ b/tests/test_sendmsg_recvmsg_fd.c @@ -1,5 +1,6 @@ #include #include +#include #include #include -- 2.34.1