From cb2326360a386a362c93f01d7f6bd594cfb39d0a Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Wed, 11 Sep 1996 20:28:23 +0000 Subject: [PATCH] * list.h (scm_list_head): Missing prototype for function in list.c added. --- libguile/list.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libguile/list.h b/libguile/list.h index e2a12c80b..a969b46fa 100644 --- a/libguile/list.h +++ b/libguile/list.h @@ -52,6 +52,7 @@ #ifdef __STDC__ +extern SCM scm_list_head (SCM lst, SCM k); extern SCM scm_listify (SCM elt, ...); extern SCM scm_list(SCM objs); 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); #else /* STDC */ +extern SCM scm_list_head (); extern SCM scm_listify (); extern SCM scm_list(); extern SCM scm_null_p();