summaryrefslogtreecommitdiff
path: root/libguile/error.h
diff options
context:
space:
mode:
authorJim Blandy <jimb@red-bean.com>1996-09-10 19:22:40 +0000
committerJim Blandy <jimb@red-bean.com>1996-09-10 19:22:40 +0000
commit3e8a29f5f5c8afd927d04e1b9c1ee0ac6c259c1a (patch)
tree2b879981654c3b6324d9de3677626d5e4b090849 /libguile/error.h
parentc5d5195418d269d73c12b0d46a1b6e5af7598ebf (diff)
downloadguile-3e8a29f5f5c8afd927d04e1b9c1ee0ac6c259c1a.tar.gz
Use SCM_P instead of PROTO; the latter intrudes on the user's
namespace. * params.h: Deleted; definition of SCM_P moved to... * __scm.h: ... here, where it replaces PROTO macro. * libguile.h, smob.h: Don't #include "params.h". * continuations.c, error.h, feature.h, gc.c, gc.h, init.h, load.h, smob.h: Fix prototypes accordingly. * Makefile.in: Update dependencies. (inner_h_files): Remove params.h.
Diffstat (limited to 'libguile/error.h')
-rw-r--r--libguile/error.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/error.h b/libguile/error.h
index 6ada0c983..816d4f767 100644
--- a/libguile/error.h
+++ b/libguile/error.h
@@ -51,8 +51,8 @@ extern SCM system_error_sym;
-extern void scm_error PROTO ((SCM key, char *subr, char *message, SCM args, SCM rest));
-extern void (*scm_error_callback) PROTO ((SCM key, char *subr, char *message, SCM args, SCM rest));
+extern void scm_error SCM_P ((SCM key, char *subr, char *message, SCM args, SCM rest));
+extern void (*scm_error_callback) SCM_P ((SCM key, char *subr, char *message, SCM args, SCM rest));
#ifdef __STDC__
extern int scm_handle_it (int i);