view src/build-msvctools/stdbool.h @ 5895:2db7f803d55d release

librsb: Update to version 1.2.0.10 (bug #60042). * src/librsb.mk: Update version and checksum. Remove work-around for fixed bug.
author Markus Mützel <markus.muetzel@gmx.de>
date Sun, 19 Sep 2021 14:32:07 +0200
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__ */