1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-09 13:30:26 +02:00

* list.h (scm_list_head): Missing prototype for function in

list.c added.
This commit is contained in:
Jim Blandy 1996-09-11 20:28:23 +00:00
parent c828e6ad2b
commit cb2326360a

View file

@ -52,6 +52,7 @@
#ifdef __STDC__ #ifdef __STDC__
extern SCM scm_list_head (SCM lst, SCM k);
extern SCM scm_listify (SCM elt, ...); extern SCM scm_listify (SCM elt, ...);
extern SCM scm_list(SCM objs); extern SCM scm_list(SCM objs);
extern SCM scm_null_p(SCM x); extern SCM scm_null_p(SCM x);
@ -84,6 +85,7 @@ extern SCM scm_delete (SCM item, SCM lst);
extern void scm_init_list (void); extern void scm_init_list (void);
#else /* STDC */ #else /* STDC */
extern SCM scm_list_head ();
extern SCM scm_listify (); extern SCM scm_listify ();
extern SCM scm_list(); extern SCM scm_list();
extern SCM scm_null_p(); extern SCM scm_null_p();