summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libguile/list.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libguile/list.h b/libguile/list.h
index b43b06e2a..1a167ad84 100644
--- a/libguile/list.h
+++ b/libguile/list.h
@@ -95,6 +95,9 @@ extern SCM scm_list_copy SCM_P ((SCM lst));
extern SCM scm_delq SCM_P ((SCM item, SCM lst));
extern SCM scm_delv SCM_P ((SCM item, SCM lst));
extern SCM scm_delete SCM_P ((SCM item, SCM lst));
+extern SCM scm_delq1_x SCM_P ((SCM item, SCM lst));
+extern SCM scm_delv1_x SCM_P ((SCM item, SCM lst));
+extern SCM scm_delete1_x SCM_P ((SCM item, SCM lst));
extern void scm_init_list SCM_P ((void));
#endif /* LISTH */