commit | 00208ce194d4afcde154cf3ed2d9811e2c9d3ebc | [log] [tgz] |
---|---|---|
author | Damien George <damien.p.george@gmail.com> | Thu Jan 23 00:00:53 2014 +0000 |
committer | Damien George <damien.p.george@gmail.com> | Thu Jan 23 00:00:53 2014 +0000 |
tree | 1b83fb5f62281be6fe4a6c9883b998a6ce232cfa | |
parent | 0d028743aa12ef935b27fdbaf0a5ad3ca62d7628 [diff] [blame] |
py: Change macro var args in parser to be C99 compliant.
diff --git a/py/compile.c b/py/compile.c index 2aa9850..4bbdf9a 100644 --- a/py/compile.c +++ b/py/compile.c
@@ -23,7 +23,7 @@ typedef enum { PN_none = 0, -#define DEF_RULE(rule, comp, kind, arg...) PN_##rule, +#define DEF_RULE(rule, comp, kind, ...) PN_##rule, #include "grammar.h" #undef DEF_RULE PN_maximum_number_of,