From 13fe5269a7cfe355a832ff36b09ca918fb46add3 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sat, 25 Feb 2017 17:23:41 +0300 Subject: compilation fix --- include/msapi/stdbool.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 include/msapi/stdbool.h (limited to 'include/msapi') diff --git a/include/msapi/stdbool.h b/include/msapi/stdbool.h new file mode 100644 index 0000000000..db5d31a544 --- /dev/null +++ b/include/msapi/stdbool.h @@ -0,0 +1,21 @@ +/* stdbool.h standard header */ + +#ifndef _STDBOOL +#define _STDBOOL + +#define __bool_true_false_are_defined 1 + +#ifndef __cplusplus + +#define bool _Bool +#define false 0 +#define true 1 + +#endif /* __cplusplus */ + +#endif /* _STDBOOL */ + +/* + * Copyright (c) 1992-2010 by P.J. Plauger. ALL RIGHTS RESERVED. + * Consult your license regarding permissions and restrictions. +V5.30:0009 */ -- cgit v1.2.3