From 96c7cd26dca9b99986441d5e4dced0bb66e0ea4f Mon Sep 17 00:00:00 2001 From: Vincenzo Calabretta Date: Wed, 3 Jul 2024 15:27:26 +0200 Subject: [PATCH] system: linux: include missing headers Do not rely on indirect includes since they may not be present on some systems. Signed-off-by: Vincenzo Calabretta --- test/system/linux/threads.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/system/linux/threads.c b/test/system/linux/threads.c index 1382d28..8699055 100644 --- a/test/system/linux/threads.c +++ b/test/system/linux/threads.c @@ -8,6 +8,9 @@ #include #include "metal-test.h" +#include +#include + int metal_run(int threads, metal_thread_t child, void *arg) { pthread_t tids[threads];