From 08a6cba2f03085481787c070b13c6bbb83a78fff Mon Sep 17 00:00:00 2001 From: Jim Harris Date: Thu, 29 Sep 2016 10:52:14 -0700 Subject: [PATCH] util: add stdbool.h include to io_channel.h A previous commit added use of 'bool' but did not add a stdbool.h include. All files including io_channel.h already were including stdbool.h, but adding it here so that we do not depend on that for future usages. Signed-off-by: Jim Harris Change-Id: Iaa88a0747889fe02f327059c99bc751c9ab326f7 --- include/spdk/io_channel.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/spdk/io_channel.h b/include/spdk/io_channel.h index 4f510148a8..19f435fe2e 100644 --- a/include/spdk/io_channel.h +++ b/include/spdk/io_channel.h @@ -39,6 +39,7 @@ #define SPDK_IO_CHANNEL_H_ #include +#include #include "spdk/queue.h"