summaryrefslogtreecommitdiff
path: root/libguile/feature.h
diff options
context:
space:
mode:
authorJim Blandy <jimb@red-bean.com>1996-09-04 19:33:49 +0000
committerJim Blandy <jimb@red-bean.com>1996-09-04 19:33:49 +0000
commitd881a38f5f0132f0cc0316060faf1713f3a2bd44 (patch)
tree07276edd878b8234a9591b5c47123a11f1ba28db /libguile/feature.h
parent74440903493f991194a585d96d2aa1bedb27c964 (diff)
downloadguile-d881a38f5f0132f0cc0316060faf1713f3a2bd44.tar.gz
* feature.h, feature.c: Use PROTO macro, instead of #if __STDC__.
Diffstat (limited to 'libguile/feature.h')
-rw-r--r--libguile/feature.h20
1 files changed, 4 insertions, 16 deletions
diff --git a/libguile/feature.h b/libguile/feature.h
index d57b18af2..c7adbfa40 100644
--- a/libguile/feature.h
+++ b/libguile/feature.h
@@ -46,24 +46,12 @@
#include <libguile/__scm.h>
-
extern SCM *scm_loc_features;
-
-#ifdef __STDC__
-extern void scm_add_feature(char* str);
-extern SCM scm_compiled_library_path (void);
-extern SCM scm_program_arguments (void);
-extern void scm_init_feature(void);
-
-#else /* STDC */
-extern void scm_add_feature();
-extern SCM scm_compiled_library_path ();
-extern SCM scm_program_arguments ();
-extern void scm_init_feature();
-
-#endif /* STDC */
-
+extern void scm_add_feature PROTO((char* str));
+extern SCM scm_compiled_library_path PROTO((void));
+extern SCM scm_program_arguments PROTO((void));
+extern void scm_init_feature PROTO((void));
#endif /* FEATUREH */