Commit 2f4ef95a authored by Masamitsu MURASE's avatar Masamitsu MURASE

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

parent 2a3e74b4
...@@ -41,8 +41,13 @@ static void backref_error(parser_state *p, node *n); ...@@ -41,8 +41,13 @@ static void backref_error(parser_state *p, node *n);
#define identchar(c) (isalnum(c) || (c) == '_' || !isascii(c)) #define identchar(c) (isalnum(c) || (c) == '_' || !isascii(c))
#ifndef TRUE
#define TRUE 1 #define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0 #define FALSE 0
#endif
typedef unsigned int stack_type; typedef unsigned int stack_type;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment