Add 'ifndef/endif' to avoid conflict of 'TRUE' definition.

This commit is contained in:
Masamitsu MURASE
2012-05-27 23:05:43 +09:00
parent 2a3e74b4fd
commit 2f4ef95ae6
+5
View File
@@ -41,8 +41,13 @@ static void backref_error(parser_state *p, node *n);
#define identchar(c) (isalnum(c) || (c) == '_' || !isascii(c))
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
typedef unsigned int stack_type;