stdbool.h
Go to the documentation of this file.00001 #ifndef _STDBOOL_H
00002 #define _STDBOOL_H
00003
00004 #define _Bool signed char
00005 enum { false = 0, true = 1 };
00006 #define bool _Bool
00007 #define false 0
00008 #define true 1
00009 #define __bool_true_false_are_defined 1
00010
00011 #endif