Subversion Repositories Kolibri OS

Rev

Rev 4358 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4358 Rev 4401
Line 33... Line 33...
33
#define false   0
33
#define false   0
34
#define true    1
34
#define true    1
35
#define bool    _Bool
35
#define bool    _Bool
Line 36... Line 36...
36
 
36
 
-
 
37
/* For compilers that don't have the builtin _Bool type. */
37
/* For compilers that don't have the builtin _Bool type. */
38
#if (defined(_MSC_VER) && _MSC_VER < 1800) || \
38
#if defined(_MSC_VER) || (__STDC_VERSION__ < 199901L && __GNUC__ < 3)
39
    (defined __GNUC__&& __STDC_VERSION__ < 199901L && __GNUC__ < 3)
39
typedef unsigned char _Bool;
40
typedef unsigned char _Bool;
Line 40... Line 41...
40
#endif
41
#endif