diff options
author | Richard Braun <rbraun@sceen.net> | 2017-03-17 20:15:14 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-03-17 20:15:14 +0100 |
commit | 5d0d0219055719cf76503fe93b5b8aab5f3e8a13 (patch) | |
tree | bcf3869a1465639c088e08d22608f3d1f55a08d7 /kern/condition.c | |
parent | 042692f4ef42be9478c503031304232f337a9c3a (diff) |
kern/{condition,mutex}: include stdbool.h
Diffstat (limited to 'kern/condition.c')
-rw-r--r-- | kern/condition.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kern/condition.c b/kern/condition.c index bcd5ba42..7440fa36 100644 --- a/kern/condition.c +++ b/kern/condition.c @@ -18,6 +18,7 @@ * Locking order : mutex -> sleep queue */ +#include <stdbool.h> #include <stddef.h> #include <kern/assert.h> |