diff options
author | Jim Blandy <jimb@red-bean.com> | 1997-01-07 23:42:35 +0000 |
---|---|---|
committer | Jim Blandy <jimb@red-bean.com> | 1997-01-07 23:42:35 +0000 |
commit | 805df3e8af166d84bb5f67b34929816cac6433ad (patch) | |
tree | 4b18d889d756e6380b0ac68dec424c6578776e12 /libguile/print.h | |
parent | ae65f9f937fab843cba469d0ebe484adb42bdd47 (diff) | |
download | guile-805df3e8af166d84bb5f67b34929816cac6433ad.tar.gz |
I think the Sun compiler has chosen a perverse way to interpret
ANSI declarations combined with K&R definitions. We'll
appease it a little bit. But when it invades France, we fight.
* print.c (scm_iprlist): Change 'tlr' argument to an int.
* print.h (scm_iprlist): Here too.
* numbers.c (scm_divbigdig): Change definition to match
declaration in numbers.h.
* unif.c (scm_makflo): Change definition to match declaration in
unif.h.
Diffstat (limited to 'libguile/print.h')
-rw-r--r-- | libguile/print.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/print.h b/libguile/print.h index cb326fb5b..d16d4f64d 100644 --- a/libguile/print.h +++ b/libguile/print.h @@ -88,7 +88,7 @@ SCM scm_make_print_state SCM_P ((void)); void scm_free_print_state SCM_P ((SCM print_state)); extern void scm_intprint SCM_P ((long n, int radix, SCM port)); extern void scm_ipruk SCM_P ((char *hdr, SCM ptr, SCM port)); -extern void scm_iprlist SCM_P ((char *hdr, SCM exp, char tlr, SCM port, scm_print_state *pstate)); +extern void scm_iprlist SCM_P ((char *hdr, SCM exp, int tlr, SCM port, scm_print_state *pstate)); extern void scm_prin1 SCM_P ((SCM exp, SCM port, int writingp)); extern void scm_iprin1 SCM_P ((SCM exp, SCM port, scm_print_state *pstate)); extern SCM scm_write SCM_P ((SCM obj, SCM port)); |