diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1996-09-22 22:41:40 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1996-09-22 22:41:40 +0000 |
commit | 9882ea199196202be10bcf4bfbfea3669efae421 (patch) | |
tree | 9128a959f5ab93bd4d197165d6b45795d57289b5 /libguile/mallocs.c | |
parent | 19402679360bfd4d2cd1b87d78bbc5687d03f92b (diff) | |
download | guile-9882ea199196202be10bcf4bfbfea3669efae421.tar.gz |
* arbiters.c (prinarb),
async.c (print_async),
debug.c (prindebugobj, prinmemoized),
eval.c (prinprom, prinmacro),
filesys.c (scm_fd_print, scm_dir_print),
kw.c (print_kw),
mallocs.c (prinmalloc),
numbers.c, numbers.h (scm_floprint, scm_bigprint),
smob.h (scm_smobfuns),
srcprop.c (prinsrcprops),
throw.c (prinjb),
unif.c, unif.h (scm_raprin1, rapr1),
variable.c (prin_var): Changed argument `int writing' to
`scm_print_state *pstate'.
Diffstat (limited to 'libguile/mallocs.c')
-rw-r--r-- | libguile/mallocs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/mallocs.c b/libguile/mallocs.c index e4184d52c..fa4fd77c9 100644 --- a/libguile/mallocs.c +++ b/libguile/mallocs.c @@ -53,13 +53,13 @@ fmalloc(ptr) #ifdef __STDC__ static int -prinmalloc (SCM exp, SCM port, int writing) +prinmalloc (SCM exp, SCM port, scm_print_state *pstate) #else static int -prinmalloc (exp, port, writing) +prinmalloc (exp, port, pstate) SCM exp; SCM port; - int writing; + scm_print_state *pstate; #endif { scm_gen_puts(scm_regular_string, "#<malloc ", port); |