/ payloads / libpayload / include / stdbool.h
stdbool.h
 1  /* SPDX-License-Identifier: BSD-3-Clause */
 2  
 3  #ifndef __STDBOOL_H
 4  #define __STDBOOL_H
 5  
 6  #define bool	_Bool
 7  #define false	0
 8  #define true	(!false)
 9  
10  #endif