* throw.h, throw.c: Use SCM_P instead of #if hair.
authorJim Blandy <jimb@red-bean.com>
Sat, 28 Sep 1996 00:04:22 +0000 (00:04 +0000)
committerJim Blandy <jimb@red-bean.com>
Sat, 28 Sep 1996 00:04:22 +0000 (00:04 +0000)
libguile/throw.h

index b5b80fe..a1b0b45 100644 (file)
 #include "libguile/__scm.h"
 
 \f
-
-\f
-#ifdef __STDC__
-extern SCM scm_catch (SCM tag, SCM thunk, SCM handler);
-extern SCM scm_ithrow (SCM key, SCM args, int noreturn);
-extern SCM scm_throw (SCM key, SCM args);
-extern void scm_init_throw (void);
-
-#else /* STDC */
-extern SCM scm_catch ();
-extern SCM scm_ithrow ();
-extern SCM scm_throw ();
-extern void scm_init_throw ();
-
-#endif /* STDC */
-
-
+extern SCM scm_catch SCM_P ((SCM tag, SCM thunk, SCM handler));
+extern SCM scm_ithrow SCM_P ((SCM key, SCM args, int noreturn));
+extern SCM scm_throw SCM_P ((SCM key, SCM args));
+extern void scm_init_throw SCM_P ((void));
 #endif  /* THROWH */