Commit 3ad89009 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Pavel Emelyanov

bug: Include <stdbool.h>

We have #define BUG() BUG_ON(true) here, where 'true'
is defined in stdbool header, so to be able to include
bug.h on its own -- include needed header inplace.
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent ab6c165b
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
#define __CR_BUG_H__ #define __CR_BUG_H__
#include <signal.h> #include <signal.h>
#include <stdbool.h>
#include "compiler.h" #include "compiler.h"
#include "log.h" #include "log.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment