21 lines
323 B
C
21 lines
323 B
C
/* stdbool.h */
|
|
|
|
/*
|
|
* Copyright (c) 2014 Wind River Systems, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __INC_stdbool_h__
|
|
#define __INC_stdbool_h__
|
|
|
|
#ifndef __cplusplus
|
|
#define bool _Bool
|
|
#define true 1
|
|
#define false 0
|
|
#endif
|
|
|
|
#define __bool_true_false_are_defined 1
|
|
|
|
#endif /* __INC_stdbool_h__ */
|