diff options
Diffstat (limited to '')
-rw-r--r-- | src/memalloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/memalloc.h b/src/memalloc.h index 282dbb0..ad6015d 100644 --- a/src/memalloc.h +++ b/src/memalloc.h @@ -40,7 +40,6 @@ struct stackmark { struct stack_block *stackp; char *stacknxt; size_t stacknleft; - struct stackmark *marknext; }; @@ -54,6 +53,7 @@ pointer ckrealloc(pointer, size_t); char *savestr(const char *); pointer stalloc(size_t); void stunalloc(pointer); +void pushstackmark(struct stackmark *mark, size_t len); void setstackmark(struct stackmark *); void popstackmark(struct stackmark *); void growstackblock(void); |