diff options
Diffstat (limited to 'libguile/gh_predicates.c')
-rw-r--r-- | libguile/gh_predicates.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libguile/gh_predicates.c b/libguile/gh_predicates.c index b0d0c1b49..f36aedf26 100644 --- a/libguile/gh_predicates.c +++ b/libguile/gh_predicates.c @@ -20,6 +20,8 @@ #include "libguile/gh.h" +#if SCM_ENABLE_DEPRECATED + /* type predicates: tell you if an SCM object has a given type */ int gh_boolean_p (SCM val) @@ -110,6 +112,8 @@ gh_null_p(SCM l) return (scm_is_true(scm_null_p(l))); } +#endif /* SCM_ENABLE_DEPRECATED */ + /* Local Variables: c-file-style: "gnu" |