diff options
author | Jim Blandy <jimb@red-bean.com> | 1996-09-11 20:28:41 +0000 |
---|---|---|
committer | Jim Blandy <jimb@red-bean.com> | 1996-09-11 20:28:41 +0000 |
commit | 3a2425b94404345deb466c3b4dbac04dd82b47f4 (patch) | |
tree | e9373d5b42693dbdf74311e92ba01ab97395e91f | |
parent | cb2326360a386a362c93f01d7f6bd594cfb39d0a (diff) | |
download | guile-3a2425b94404345deb466c3b4dbac04dd82b47f4.tar.gz |
* numbers.c (scm_two_doubles): Changed from extern to static
(is used only within numbers.c).
-rw-r--r-- | libguile/numbers.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libguile/numbers.c b/libguile/numbers.c index a02e44811..1bef10bf4 100644 --- a/libguile/numbers.c +++ b/libguile/numbers.c @@ -3448,7 +3448,8 @@ SCM_PROC1 (s_i_tanh, "$tanh", scm_tc7_cxr, (SCM (*)())tanh); struct dpair {double x, y;}; -void scm_two_doubles(z1, z2, sstring, xy) +static void +scm_two_doubles(z1, z2, sstring, xy) SCM z1, z2; char *sstring; struct dpair *xy; |