Files
bshell/bshell/ast/null.c
T

8 lines
163 B
C

#include "../parse/token.h"
#include "ast.h"
struct ast_node_definition null_ast_node = {
.def_id = AST_NULL,
.def_node_size = sizeof(struct null_ast_node),
};