diff options
Diffstat (limited to 'libguile/gh_eval.c')
-rw-r--r-- | libguile/gh_eval.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libguile/gh_eval.c b/libguile/gh_eval.c index be7af5104..391ff4d26 100644 --- a/libguile/gh_eval.c +++ b/libguile/gh_eval.c @@ -20,6 +20,8 @@ #include "libguile/gh.h" +#if SCM_ENABLE_DEPRECATED + typedef SCM (*gh_eval_t) (void *data, SCM jmpbuf); /* Evaluate the string; toss the value. */ @@ -94,6 +96,8 @@ gh_eval_file_with_standard_handler (const char *scheme_code) return gh_eval_file_with_catch (scheme_code, gh_standard_handler); } +#endif /* SCM_ENABLE_DEPRECATED */ + /* Local Variables: c-file-style: "gnu" |