aboutsummaryrefslogtreecommitdiff
path: root/ast.h
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2014-03-26 03:38:14 +0800
committerTeddy <ted.sybil@gmail.com>2014-03-26 03:38:14 +0800
commiteebe59a7e3a8ff255ebde71b0aa89e9ade58d4aa (patch)
treeda9d64ea5efd630870c4f0cd36687cfbcfb897bc /ast.h
parentac1b4ecd8f15f19c775c951b2e5b2f3ce85c2e01 (diff)
...
Diffstat (limited to 'ast.h')
-rw-r--r--ast.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ast.h b/ast.h
index 5324cda..77d2c9b 100644
--- a/ast.h
+++ b/ast.h
@@ -32,7 +32,7 @@ typedef struct CNode {
DECL, /* declaration */
DECLR, /* declarator */
DECLRS,
- INIT_DECLR,
+ INIT_DECLR,
INIT_DECLRS,
INITR, /* initializer */
TYPE_SPEC,
@@ -74,7 +74,7 @@ typedef struct CNode {
CNode *cnode_add_loc(CNode *node, YYLTYPE loc);
CNode *cnode_create_ast(CNode *wrapped);
CNode *cnode_create_nop();
-CNode *cnode_create_general(int type, int subtype, int pnum, va_list ap);
+CNode *cnode_create_general(int type, int subtype, int pnum, va_list ap);
CNode *cnode_list_append(CNode *list, CNode *tail);
CNode *cnode_list_wrap(int type, CNode *list);