summaryrefslogtreecommitdiff
path: root/libguile/load.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/load.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/load.h')
-rw-r--r--libguile/load.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libguile/load.h b/libguile/load.h
index aeb1ac71a..a1d37ab39 100644
--- a/libguile/load.h
+++ b/libguile/load.h
@@ -46,10 +46,10 @@
#include "libguile/__scm.h"
-extern void scm_init_load_path PROTO ((void));
-extern SCM scm_sys_try_load PROTO ((SCM filename, SCM casep, SCM sharp));
-extern SCM scm_sys_search_load_path PROTO ((SCM filename));
-extern SCM scm_sys_try_load_path PROTO ((SCM filename, SCM casep, SCM sharp));
-extern void scm_init_load PROTO ((void));
+extern void scm_init_load_path SCM_P ((void));
+extern SCM scm_sys_try_load SCM_P ((SCM filename, SCM casep, SCM sharp));
+extern SCM scm_sys_search_load_path SCM_P ((SCM filename));
+extern SCM scm_sys_try_load_path SCM_P ((SCM filename, SCM casep, SCM sharp));
+extern void scm_init_load SCM_P ((void));
#endif /* LOADH */