aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c
index 4f7f42f1ebe..9bdcf4bed17 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -200,6 +200,12 @@ backtrace_next (union specbinding *pdl)
200 return pdl; 200 return pdl;
201} 201}
202 202
203/* Return a pointer to somewhere near the top of the C stack. */
204void *
205near_C_stack_top (void)
206{
207 return backtrace_args (backtrace_top ());
208}
203 209
204void 210void
205init_eval_once (void) 211init_eval_once (void)