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 <james.r.harris@intel.com>
Change-Id: Iaa88a0747889fe02f327059c99bc751c9ab326f7
This commit is contained in:
Jim Harris 2016-09-29 10:52:14 -07:00 committed by Daniel Verkamp
parent c1341b0718
commit 08a6cba2f0

View File

@ -39,6 +39,7 @@
#define SPDK_IO_CHANNEL_H_
#include <inttypes.h>
#include <stdbool.h>
#include "spdk/queue.h"