summaryrefslogtreecommitdiff
path: root/libguile/variable.h
diff options
context:
space:
mode:
authorJim Blandy <jimb@red-bean.com>1996-09-11 20:29:44 +0000
committerJim Blandy <jimb@red-bean.com>1996-09-11 20:29:44 +0000
commit5e840c2e1a254791505d78bef0c041369f488303 (patch)
treebed46a94b5e87e638aa5bd39a5aebd9c01c81855 /libguile/variable.h
parent3a2425b94404345deb466c3b4dbac04dd82b47f4 (diff)
downloadguile-5e840c2e1a254791505d78bef0c041369f488303.tar.gz
* numbers.h: Repeated declarations removed.
* ports.h (scm_close_all_ports_except): Declaration for the function defined in ports.c added. * posix.h: Missing declarations added. * procs.h (scm_make_subr_opt): Missing declaration added. * socket.h (scm_sys_gethost): Missing declaration added. * socket.h: Redundant declarations removed (they are in fdsocket.h). * srcprop.h (scm_set_source_property_x, scm_finish_srcprop): Missing declarations added. * stime.h (scm_get_internal_real_time): Repeated declarations removed. * struct.c: Uninitialized variable `SCM answer' may be used. * unif.c (l2ra): Declaration prototype. * unif.c (scm_array_equal_p): Dummy definition removed (it is defined in ramap.c). * unif.h (scm_raprin1, scm_istr2bve, scm_array_equal_p): Redundant declarations removed (they are in ramap.h). * variable.h (scm_make_udvariable, scm_make_undefined_variable): Declaration corrected to correspond variable.c. * vectors.h (scm_vector_move_left_x, scm_vector_move_right_x): Missing declarations added.
Diffstat (limited to 'libguile/variable.h')
-rw-r--r--libguile/variable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/variable.h b/libguile/variable.h
index 1bd92846c..9b426bc4e 100644
--- a/libguile/variable.h
+++ b/libguile/variable.h
@@ -60,7 +60,7 @@ extern int scm_tc16_variable;
#ifdef __STDC__
extern SCM scm_make_variable (SCM init, SCM name_hint);
-extern SCM scm_make_udvariable (SCM name_hint);
+extern SCM scm_make_undefined_variable (SCM name_hint);
extern SCM scm_variable_p (SCM obj);
extern SCM scm_variable_ref (SCM var);
extern SCM scm_variable_set_x (SCM var, SCM val);
@@ -70,7 +70,7 @@ extern void scm_init_variable (void);
#else /* STDC */
extern SCM scm_make_variable ();
-extern SCM scm_make_udvariable ();
+extern SCM scm_make_undefined_variable ();
extern SCM scm_variable_p ();
extern SCM scm_variable_ref ();
extern SCM scm_variable_set_x ();