blob: 7433b53ce31f4b150f098fdb24eea3eb28cb018f [file] [log] [blame]
/* 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__ */