helper_thread.h: include missing stdbool.h because 'bool' type is used
authorDenis Pronin <dannftk@yandex.ru>
Thu, 27 Jul 2023 19:06:59 +0000 (22:06 +0300)
committerDenis Pronin <dannftk@yandex.ru>
Thu, 27 Jul 2023 19:23:24 +0000 (22:23 +0300)
missing headers should be included at the places where they are
certainly used

Signed-off-by: Denis Pronin <dannftk@yandex.ru>
helper_thread.h

index d7df6c4d804d03693efae459a794366df599ce6f..91b504638f229bcf3b4b002ab9c0c61a01e557b9 100644 (file)
@@ -1,6 +1,8 @@
 #ifndef FIO_HELPER_THREAD_H
 #define FIO_HELPER_THREAD_H
 
+#include <stdbool.h>
+
 extern void helper_reset(void);
 extern void helper_do_stat(void);
 extern bool helper_should_exit(void);