00001 /* Copyright (c) 2007 Nordic Semiconductor. All Rights Reserved. 00002 * 00003 * The information contained herein is property of Nordic Semiconductor ASA. 00004 * Terms and conditions of usage are described in detail in NORDIC 00005 * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT. 00006 * 00007 * Licensees are granted free, non-transferable use of the information. NO 00008 * WARRENTY of ANY KIND is provided. This heading must NOT be removed from 00009 * the file. 00010 * 00011 * $LastChangedRevision: 230 $ 00012 */ 00013 00024 #ifndef __STDBOOL_H__ 00025 #define __STDBOOL_H__ 00026 00027 //lint -strong(b,_Bool) 00028 typedef unsigned char _Bool; 00029 00030 #define bool _Bool 00031 #define true ((bool)1) 00032 #define false ((bool)0) 00033 #define __bool_true_false_are_defined 1 00034 00035 #endif // __STDBOOL_H__