summaryrefslogtreecommitdiff
path: root/byterun/stacks.h
diff options
context:
space:
mode:
Diffstat (limited to 'byterun/stacks.h')
-rw-r--r--byterun/stacks.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/byterun/stacks.h b/byterun/stacks.h
deleted file mode 100644
index aa68532f8c..0000000000
--- a/byterun/stacks.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/* structure of the stacks */
-
-#ifndef _stacks_
-#define _stacks_
-
-
-#include "misc.h"
-#include "mlvalues.h"
-#include "memory.h"
-
-extern value * stack_low;
-extern value * stack_high;
-extern value * stack_threshold;
-extern value * extern_sp;
-extern value * trapsp;
-
-#define Trap_pc(tp) (((code_t *)(tp))[0])
-#define Trap_link(tp) (((value **)(tp))[1])
-
-void reset_roots P((void));
-void init_stack P((void));
-void realloc_stack P((void));
-
-
-#endif /* _stacks_ */
-