view src/build-msvctools/stdbool.h @ 5534:372ea4c0afb2

Move of-ocs PKG_XXXX to inst dir and add break patch * src/of-ocs-3-break-fixes.patch, src/of-ocs-4-pkgadd-fixes.patch: new files * dist-files.mk: add ref to files
author John Donoghue <john.donoghue@ieee.org>
date Sun, 13 Sep 2020 08:15:14 -0400
parents f8299bb6c872
children
line wrap: on
line source

/* Emulation of stdbool.h for Visual C++. */

#ifndef __stdbool_h__
#define __stdbool_h__ 1

#ifndef __cplusplus

#define __bool_true_false_are_defined 1

#define false 0
#define true 1

#define bool _Bool
typedef unsigned char _Bool;

#endif /* __cplusplus */

#endif /* __stdbool_h__ */