summaryrefslogtreecommitdiff
path: root/libguile/procs.h
diff options
context:
space:
mode:
Diffstat (limited to 'libguile/procs.h')
-rw-r--r--libguile/procs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libguile/procs.h b/libguile/procs.h
index d2dc9bcfa..d1fa58016 100644
--- a/libguile/procs.h
+++ b/libguile/procs.h
@@ -91,6 +91,7 @@ typedef struct scm_dsubr
#ifdef __STDC__
extern SCM scm_make_subr (char *name, int type, SCM (*fcn) ());
+extern SCM scm_make_subr_opt (char *name, int type, SCM (*fcn) (), int set);
extern SCM scm_makcclo (SCM proc, long len);
extern SCM scm_procedure_p (SCM obj);
extern void scm_init_iprocs(scm_iproc *subra, int type);
@@ -98,6 +99,7 @@ extern void scm_init_procs (void);
#else /* STDC */
extern SCM scm_make_subr ();
+extern SCM scm_make_subr_opt ();
extern SCM scm_makcclo ();
extern SCM scm_procedure_p ();
extern void scm_init_iprocs();