diff options
author | Marius Vollmer <mvo@zagadka.de> | 2001-06-14 19:50:43 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2001-06-14 19:50:43 +0000 |
commit | 92c2555f6972b5fbc2236fe486e9432040b43812 (patch) | |
tree | e439c8a06c62d74e4ef377a3fbe94783f2943a90 /libguile/root.h | |
parent | 51fa276692198eb140365f60e516fbc8ff547f10 (diff) | |
download | guile-92c2555f6972b5fbc2236fe486e9432040b43812.tar.gz |
replace "scm_*_t" with "scm_t_*".
Diffstat (limited to 'libguile/root.h')
-rw-r--r-- | libguile/root.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libguile/root.h b/libguile/root.h index 9963aa813..49f3604e1 100644 --- a/libguile/root.h +++ b/libguile/root.h @@ -80,7 +80,7 @@ extern SCM scm_sys_protects[]; -extern scm_bits_t scm_tc16_root; +extern scm_t_bits scm_tc16_root; #define SCM_ROOTP(obj) SCM_TYP16_PREDICATE (scm_tc16_root, obj) #define SCM_ROOT_STATE(root) ((scm_root_state *) SCM_CELL_WORD_1 (root)) @@ -97,7 +97,7 @@ typedef struct scm_root_state SCM continuation_stack_ptr; #ifdef DEBUG_EXTENSIONS /* It is very inefficient to have this variable in the root state. */ - scm_debug_frame_t *last_debug_frame; + scm_t_debug_frame *last_debug_frame; #endif SCM progargs; /* vestigial */ @@ -149,9 +149,9 @@ extern struct scm_root_state *scm_root; extern SCM scm_make_root (SCM parent); -extern SCM scm_internal_cwdr (scm_catch_body_t body, +extern SCM scm_internal_cwdr (scm_t_catch_body body, void *body_data, - scm_catch_handler_t handler, + scm_t_catch_handler handler, void *handler_data, SCM_STACKITEM *stack_start); extern SCM scm_call_with_dynamic_root (SCM thunk, SCM handler); |