From d26a7f96cdd4250f4de3792fd647c3b92581712e Mon Sep 17 00:00:00 2001 From: Christian Eggers Date: Wed, 19 Mar 2025 11:37:20 +0100 Subject: [PATCH] tools: iso-tester: add inclusion of time.h Inclusion of requires that 'struct timespec' has already been defined: | In file included from ../bluez-5.79/tools/iso-tester.c:21: | /usr/include/linux/errqueue.h:57:25: error: array type has incomplete element type 'struct timespec' | 57 | struct timespec ts[3]; | | ^~ --- tools/iso-tester.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/iso-tester.c b/tools/iso-tester.c index 640692b77..350775fdd 100644 --- a/tools/iso-tester.c +++ b/tools/iso-tester.c @@ -17,6 +17,7 @@ #include #include #include +#include #include #include -- 2.47.3