From 9069e5de23275e0c357e495a7a9981ee11bcd90f Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 20 Sep 2005 23:08:03 +0000 Subject: [PATCH] Fix typo in previous patch: some operands of 'defined' weren't parenthesized. --- data/yacc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/yacc.c b/data/yacc.c index bc98400a..2ba3ceac 100644 --- a/data/yacc.c +++ b/data/yacc.c @@ -254,11 +254,11 @@ b4_syncline([@oline@], [@ofile@])[ # if YYSTACK_USE_ALLOCA # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca -# elif defined __BUILTIN_VA_ARG_INCR +# elif defined (__BUILTIN_VA_ARG_INCR) # include /* INFRINGES ON USER NAME SPACE */ -# elif defined _AIX +# elif defined (_AIX) # define YYSTACK_ALLOC __alloca -# elif defined _MSC_VER +# elif defined (_MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else -- 2.45.2