From: Avi Kivity <[email protected]> Signed-off-by: Avi Kivity <[email protected]> Signed-off-by: Marcelo Tosatti <[email protected]>
diff --git a/kvm/test/lib/libcflat.h b/kvm/test/lib/libcflat.h index 2e2a8bf..d0d3df2 100644 --- a/kvm/test/lib/libcflat.h +++ b/kvm/test/lib/libcflat.h @@ -28,6 +28,10 @@ typedef unsigned u32; typedef unsigned long ulong; typedef unsigned long long u64; typedef unsigned long size_t; +typedef _Bool bool; + +#define true 1 +#define false 0 extern void exit(int code); extern void panic(char *fmt, ...); -- To unsubscribe from this list: send the line "unsubscribe kvm-commits" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
