00001 /* clib/include/stdbool.h 00002 * 00003 * Standard boolean type for C99 00004 * 00005 * Copyright 2008 Simtec Electronics 00006 */ 00007 00008 #ifndef ABLE_STDBOOL_H 00009 #define ABLE_STDBOOL_H 00010 00011 00013 #define bool _Bool 00014 00015 #define true 1 00016 00017 #define false 0 00018 00020 #define __bool_true_false_are_defined 1 00021 00022 #endif