1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

* numbers.c (scm_two_doubles): Changed from extern to static

(is used only within numbers.c).
This commit is contained in:
Jim Blandy 1996-09-11 20:28:41 +00:00
parent cb2326360a
commit 3a2425b944

View file

@ -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;