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/mutex.c | |
parent | 042692f4ef42be9478c503031304232f337a9c3a (diff) |
kern/{condition,mutex}: include stdbool.h
Diffstat (limited to 'kern/mutex.c')
-rw-r--r-- | kern/mutex.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kern/mutex.c b/kern/mutex.c index 6a1af208..b193aedb 100644 --- a/kern/mutex.c +++ b/kern/mutex.c @@ -17,6 +17,7 @@ #ifndef X15_MUTEX_PI +#include <stdbool.h> #include <stddef.h> #include <kern/mutex.h> |