RabbitECUTeensyMCUXpresso/redlib/include/stdbool.h

27 lines
543 B
C

//*******************************************************************
// +--+
// | ++----+
// +-++ |
// | |
// +-+--+ |
// | +--+--+
// +----+ Copyright (c) 2011 Code Red Technologies Ltd.
//
// stdbool.h
//
//*******************************************************************
#ifndef STDBOOL_H_
#define STDBOOL_H_
#ifndef __cplusplus
//#define bool _bool
typedef unsigned char bool;
#define false 0
#define true 1
#endif /* ifndef __cplusplus */
#define __bool_true_false_are_defined 1
#endif /* STDBOOL_H_ */