summaryrefslogtreecommitdiff
path: root/libguile/eq.h
diff options
context:
space:
mode:
Diffstat (limited to 'libguile/eq.h')
-rw-r--r--libguile/eq.h18
1 files changed, 5 insertions, 13 deletions
diff --git a/libguile/eq.h b/libguile/eq.h
index db164ec0d..c9deb5007 100644
--- a/libguile/eq.h
+++ b/libguile/eq.h
@@ -43,21 +43,13 @@
* If you do not wish that, delete this exception notice.
*/
-
+#include "libguile/__scm.h"
-#ifdef __STDC__
-extern SCM scm_eq_p (SCM x, SCM y);
-extern SCM scm_eqv_p (SCM x, SCM y);
-extern SCM scm_equal_p (SCM x, SCM y);
-extern void scm_init_eq (void);
-
-#else /* STDC */
-extern SCM scm_eq_p ();
-extern SCM scm_eqv_p ();
-extern SCM scm_equal_p ();
-extern void scm_init_eq ();
-#endif /* STDC */
+extern SCM scm_eq_p SCM_P ((SCM x, SCM y));
+extern SCM scm_eqv_p SCM_P ((SCM x, SCM y));
+extern SCM scm_equal_p SCM_P ((SCM x, SCM y));
+extern void scm_init_eq SCM_P ((void));
#endif /* EQH */