summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2014-09-01 21:56:31 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2014-09-01 21:56:31 +0200
commit1a30018711528fe51fb17c70b8c1d9300c925c1c (patch)
treed8a00c88ca095fcfc8816557a4932d806afac57e
parent415020dcc33bf136f09f2d8d8a3dc38452e71c84 (diff)
downloadfastd-1a30018711528fe51fb17c70b8c1d9300c925c1c.tar
fastd-1a30018711528fe51fb17c70b8c1d9300c925c1c.zip
Add missing stdbool.h include to dlist.h
-rw-r--r--src/dlist.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dlist.h b/src/dlist.h
index 0ca6928..f40d8ab 100644
--- a/src/dlist.h
+++ b/src/dlist.h
@@ -32,6 +32,7 @@
#pragma once
#include <stddef.h>
+#include <stdbool.h>
typedef struct fastd_dlist_head fastd_dlist_head_t;