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/fluids.h | |
parent | 51fa276692198eb140365f60e516fbc8ff547f10 (diff) | |
download | guile-92c2555f6972b5fbc2236fe486e9432040b43812.tar.gz |
replace "scm_*_t" with "scm_t_*".
Diffstat (limited to 'libguile/fluids.h')
-rw-r--r-- | libguile/fluids.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/fluids.h b/libguile/fluids.h index c80d1e696..aa11610d9 100644 --- a/libguile/fluids.h +++ b/libguile/fluids.h @@ -73,7 +73,7 @@ implement a more lightweight version of fluids on top of this basic mechanism. */ -extern scm_bits_t scm_tc16_fluid; +extern scm_t_bits scm_tc16_fluid; #define SCM_FLUIDP(x) (!SCM_IMP (x) && (SCM_CELL_TYPE (x) == scm_tc16_fluid)) #define SCM_FLUID_NUM(x) (SCM_CELL_WORD_1 (x)) |