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/print.h | |
parent | 51fa276692198eb140365f60e516fbc8ff547f10 (diff) |
replace "scm_*_t" with "scm_t_*".
Diffstat (limited to 'libguile/print.h')
-rw-r--r-- | libguile/print.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/print.h b/libguile/print.h index a9c544292..5591d382b 100644 --- a/libguile/print.h +++ b/libguile/print.h @@ -51,7 +51,7 @@ #include "libguile/options.h" -extern scm_option_t scm_print_opts[]; +extern scm_t_option scm_print_opts[]; #define SCM_PRINT_CLOSURE (SCM_PACK (scm_print_opts[0].val)) #define SCM_PRINT_SOURCE_P ((int) scm_print_opts[1].val) @@ -99,7 +99,7 @@ typedef struct scm_print_state { extern SCM scm_print_state_vtable; -extern scm_bits_t scm_tc16_port_with_ps; +extern scm_t_bits scm_tc16_port_with_ps; extern SCM scm_print_options (SCM setting); SCM scm_make_print_state (void); |