diff options
Diffstat (limited to 'ast.c')
-rw-r--r-- | ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ CNode *cnode_create_ast(CNode *wrapped) { return wrapped; } -CNode *cnode_create_nop() { +CNode *cnode_create_nop(void) { CNode *nop = NEW_CNODE; nop->type = NOP; nop->next = nop->chd = NULL; |