summaryrefslogtreecommitdiff
path: root/libguile/feature.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/feature.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/feature.h')
-rw-r--r--libguile/feature.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/feature.h b/libguile/feature.h
index 439f660b1..a45b394bb 100644
--- a/libguile/feature.h
+++ b/libguile/feature.h
@@ -49,8 +49,8 @@
extern SCM *scm_loc_features;
-extern void scm_add_feature PROTO((char* str));
-extern SCM scm_program_arguments PROTO((void));
-extern void scm_init_feature PROTO((void));
+extern void scm_add_feature SCM_P((char* str));
+extern SCM scm_program_arguments SCM_P((void));
+extern void scm_init_feature SCM_P((void));
#endif /* FEATUREH */