Fix missing line in runtime header in compiler series
This commit is contained in:
parent
6737f57a3d
commit
70793d6ac3
|
@ -55,6 +55,7 @@ struct stack {
|
||||||
struct node_base** data;
|
struct node_base** data;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
void stack_init(struct stack* s);
|
||||||
void stack_free(struct stack* s);
|
void stack_free(struct stack* s);
|
||||||
void stack_push(struct stack* s, struct node_base* n);
|
void stack_push(struct stack* s, struct node_base* n);
|
||||||
struct node_base* stack_pop(struct stack* s);
|
struct node_base* stack_pop(struct stack* s);
|
||||||
|
|
|
@ -55,6 +55,7 @@ struct stack {
|
||||||
struct node_base** data;
|
struct node_base** data;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
void stack_init(struct stack* s);
|
||||||
void stack_free(struct stack* s);
|
void stack_free(struct stack* s);
|
||||||
void stack_push(struct stack* s, struct node_base* n);
|
void stack_push(struct stack* s, struct node_base* n);
|
||||||
struct node_base* stack_pop(struct stack* s);
|
struct node_base* stack_pop(struct stack* s);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user