From: Paul Eggert Date: Tue, 20 Sep 2005 23:08:03 +0000 (+0000) Subject: Fix typo in previous patch: some operands of 'defined' weren't parenthesized. X-Git-Tag: v2.3b~636 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/9069e5de23275e0c357e495a7a9981ee11bcd90f Fix typo in previous patch: some operands of 'defined' weren't parenthesized. --- 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