soc/intel/xeon_sp/util: Enhance lock_pam0123
[coreboot2.git] / payloads / libpayload / include / stdbool.h
blob33858d51f220defd6c80871d5b99fe46f4c1aea7
1 /* SPDX-License-Identifier: BSD-3-Clause */
3 #ifndef __STDBOOL_H
4 #define __STDBOOL_H
6 #define bool _Bool
7 #define false 0
8 #define true (!false)
10 #endif