summaryrefslogtreecommitdiff
path: root/libguile/throw.h
diff options
context:
space:
mode:
authorGreg J. Badros <gjb@cs.washington.edu>2000-03-02 20:54:43 +0000
committerGreg J. Badros <gjb@cs.washington.edu>2000-03-02 20:54:43 +0000
commit7866a09b5b355ea277d2dd780b24e98f647329d4 (patch)
tree475d3833314d66222ba9773505eec1f0af7d3b01 /libguile/throw.h
parente510ed373f315ca26f17be1ebe963c5c226a158e (diff)
downloadguile-7866a09b5b355ea277d2dd780b24e98f647329d4.tar.gz
* list.c: Moved append docs to append! Thanks Dirk Hermann. Also,
added append docs from R4RS. * strings.c: Docstring typo fix, + eliminate unneeded IMP tests. Thanks Dirk Hermann! * chars.h: Provide SCM_CHARP, SCM_CHAR, SCM_MAKE_CHAR and deprecate SCM_ICHRP, SCM_ICHR, SCM_MAKICHR. Thanks Dirk Hermann! * *.h, *.c: Use SCM_CHARP, SCM_CHAR, SCM_MAKE_CHAR throughout. Drop use of SCM_P for function prototypes... assume an ANSI C compiler. Thanks Dirk Hermann!
Diffstat (limited to 'libguile/throw.h')
-rw-r--r--libguile/throw.h60
1 files changed, 30 insertions, 30 deletions
diff --git a/libguile/throw.h b/libguile/throw.h
index 9485686d1..e0ef204bb 100644
--- a/libguile/throw.h
+++ b/libguile/throw.h
@@ -48,27 +48,27 @@
-typedef SCM (*scm_catch_body_t) SCM_P ((void *data));
-typedef SCM (*scm_catch_handler_t) SCM_P ((void *data,
- SCM tag, SCM throw_args));
+typedef SCM (*scm_catch_body_t) (void *data);
+typedef SCM (*scm_catch_handler_t) (void *data,
+ SCM tag, SCM throw_args);
-extern SCM scm_internal_catch SCM_P ((SCM tag,
- scm_catch_body_t body,
- void *body_data,
- scm_catch_handler_t handler,
- void *handler_data));
+extern SCM scm_internal_catch (SCM tag,
+ scm_catch_body_t body,
+ void *body_data,
+ scm_catch_handler_t handler,
+ void *handler_data);
-extern SCM scm_internal_lazy_catch SCM_P ((SCM tag,
- scm_catch_body_t body,
- void *body_data,
- scm_catch_handler_t handler,
- void *handler_data));
+extern SCM scm_internal_lazy_catch (SCM tag,
+ scm_catch_body_t body,
+ void *body_data,
+ scm_catch_handler_t handler,
+ void *handler_data);
-extern SCM scm_internal_stack_catch SCM_P ((SCM tag,
- scm_catch_body_t body,
- void *body_data,
- scm_catch_handler_t handler,
- void *handler_data));
+extern SCM scm_internal_stack_catch (SCM tag,
+ scm_catch_body_t body,
+ void *body_data,
+ scm_catch_handler_t handler,
+ void *handler_data);
/* The first argument to scm_body_thunk should be a pointer to one of
these. See the implementation of catch in throw.c. */
@@ -84,20 +84,20 @@ struct scm_body_thunk_data
SCM body_proc;
};
-extern SCM scm_body_thunk SCM_P ((void *));
+extern SCM scm_body_thunk (void *);
-extern SCM scm_handle_by_proc SCM_P ((void *, SCM, SCM));
-extern SCM scm_handle_by_proc_catching_all SCM_P ((void *, SCM, SCM));
-extern SCM scm_handle_by_message SCM_P ((void *, SCM, SCM));
-extern SCM scm_handle_by_message_noexit SCM_P ((void *, SCM, SCM));
-extern SCM scm_handle_by_throw SCM_P ((void *, SCM, SCM));
-extern int scm_exit_status SCM_P ((SCM args));
+extern SCM scm_handle_by_proc (void *, SCM, SCM);
+extern SCM scm_handle_by_proc_catching_all (void *, SCM, SCM);
+extern SCM scm_handle_by_message (void *, SCM, SCM);
+extern SCM scm_handle_by_message_noexit (void *, SCM, SCM);
+extern SCM scm_handle_by_throw (void *, SCM, SCM);
+extern int scm_exit_status (SCM args);
-extern SCM scm_catch SCM_P ((SCM tag, SCM thunk, SCM handler));
-extern SCM scm_lazy_catch SCM_P ((SCM tag, SCM thunk, SCM handler));
-extern SCM scm_ithrow SCM_P ((SCM key, SCM args, int noreturn));
+extern SCM scm_catch (SCM tag, SCM thunk, SCM handler);
+extern SCM scm_lazy_catch (SCM tag, SCM thunk, SCM handler);
+extern SCM scm_ithrow (SCM key, SCM args, int noreturn);
-extern SCM scm_throw SCM_P ((SCM key, SCM args));
-extern void scm_init_throw SCM_P ((void));
+extern SCM scm_throw (SCM key, SCM args);
+extern void scm_init_throw (void);
#endif /* THROWH */