From b29033254cbae585f319857e2a7acef176f046f2 Mon Sep 17 00:00:00 2001 From: Denis Pronin Date: Thu, 27 Jul 2023 22:06:59 +0300 Subject: [PATCH 1/1] helper_thread.h: include missing stdbool.h because 'bool' type is used missing headers should be included at the places where they are certainly used Signed-off-by: Denis Pronin --- helper_thread.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/helper_thread.h b/helper_thread.h index d7df6c4d..91b50463 100644 --- a/helper_thread.h +++ b/helper_thread.h @@ -1,6 +1,8 @@ #ifndef FIO_HELPER_THREAD_H #define FIO_HELPER_THREAD_H +#include + extern void helper_reset(void); extern void helper_do_stat(void); extern bool helper_should_exit(void); -- 2.25.1