8 lines
202 B
C
8 lines
202 B
C
|
|
#include <bshell/ast.h>
|
||
|
|
#include <bshell/parse/token.h>
|
||
|
|
|
||
|
|
struct bshell_ast_node_definition null_bshell_ast_node = {
|
||
|
|
.def_id = BSHELL_AST_NULL,
|
||
|
|
.def_node_size = sizeof(struct bshell_null_ast_node),
|
||
|
|
};
|