summaryrefslogtreecommitdiff
path: root/libguile/mallocs.c
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2001-06-14 19:50:43 +0000
committerMarius Vollmer <mvo@zagadka.de>2001-06-14 19:50:43 +0000
commit92c2555f6972b5fbc2236fe486e9432040b43812 (patch)
treee439c8a06c62d74e4ef377a3fbe94783f2943a90 /libguile/mallocs.c
parent51fa276692198eb140365f60e516fbc8ff547f10 (diff)
downloadguile-92c2555f6972b5fbc2236fe486e9432040b43812.tar.gz
replace "scm_*_t" with "scm_t_*".
Diffstat (limited to 'libguile/mallocs.c')
-rw-r--r--libguile/mallocs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/mallocs.c b/libguile/mallocs.c
index 168f0632e..1801fbb7c 100644
--- a/libguile/mallocs.c
+++ b/libguile/mallocs.c
@@ -61,7 +61,7 @@
-scm_bits_t scm_tc16_malloc;
+scm_t_bits scm_tc16_malloc;
static size_t
@@ -86,7 +86,7 @@ malloc_print (SCM exp, SCM port, scm_print_state *pstate SCM_UNUSED)
SCM
scm_malloc_obj (size_t n)
{
- scm_bits_t mem = n ? (scm_bits_t) malloc (n) : 0;
+ scm_t_bits mem = n ? (scm_t_bits) malloc (n) : 0;
if (n && !mem)
return SCM_BOOL_F;
SCM_RETURN_NEWSMOB (scm_tc16_malloc, mem);