diff options
Diffstat (limited to 'libguile/frames.h')
-rw-r--r-- | libguile/frames.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libguile/frames.h b/libguile/frames.h index e1130e94b..c965bbfb7 100644 --- a/libguile/frames.h +++ b/libguile/frames.h @@ -160,8 +160,9 @@ SCM_API SCM scm_frame_call_representation (SCM frame); SCM_API SCM scm_frame_arguments (SCM frame); SCM_API SCM scm_frame_source (SCM frame); SCM_API SCM scm_frame_num_locals (SCM frame); -SCM_API SCM scm_frame_local_ref (SCM frame, SCM index); -SCM_API SCM scm_frame_local_set_x (SCM frame, SCM index, SCM val); +SCM_API SCM scm_frame_local_ref (SCM frame, SCM index, SCM representation); +SCM_API SCM scm_frame_local_set_x (SCM frame, SCM index, SCM val, + SCM representation); SCM_API SCM scm_frame_address (SCM frame); SCM_API SCM scm_frame_stack_pointer (SCM frame); SCM_API SCM scm_frame_instruction_pointer (SCM frame); |