From e1fd11de0bad5fa1a852b8fa497b572555448c5a Mon Sep 17 00:00:00 2001 From: Teddy Date: Sun, 6 Apr 2014 02:17:58 +0800 Subject: complex pointer support --- ast.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ast.h') diff --git a/ast.h b/ast.h index 5176cca..016b09b 100644 --- a/ast.h +++ b/ast.h @@ -70,7 +70,7 @@ CNode *cnode_create_stmt(int stmt_type, int pnum, ...); CNode *cnode_create_initr(int initr_type, CNode *body); CNode *cnode_create_decl(CNode *type, CNode *init_declrs); -CNode *cnode_create_func(CNode *type, CNode *plain_decl, CNode *params, CNode *stmt); +CNode *cnode_create_func(CNode *type, CNode *declr, CNode *stmt); CNode *cnode_create_init_declr(CNode *declr, CNode *initr); CNode *cnode_create_struct_field(CNode *type_spec, CNode *declrs); CNode *cnode_create_plain_decl(CNode *type_spec, CNode *declr); -- cgit v1.2.3